{"id":15530086,"url":"https://github.com/darthmaim/gulp-to-ico","last_synced_at":"2025-10-28T11:30:27.865Z","repository":{"id":57259267,"uuid":"77323116","full_name":"darthmaim/gulp-to-ico","owner":"darthmaim","description":"Gulp plugin to combine multiple .png files into a single .ico file.","archived":false,"fork":false,"pushed_at":"2017-12-20T13:29:24.000Z","size":5,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T14:43:33.369Z","etag":null,"topics":["gulp","gulp-plugin","ico","image"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/darthmaim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-12-25T11:35:10.000Z","updated_at":"2018-08-28T21:59:50.000Z","dependencies_parsed_at":"2022-08-25T03:02:42.425Z","dependency_job_id":null,"html_url":"https://github.com/darthmaim/gulp-to-ico","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthmaim%2Fgulp-to-ico","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthmaim%2Fgulp-to-ico/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthmaim%2Fgulp-to-ico/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthmaim%2Fgulp-to-ico/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darthmaim","download_url":"https://codeload.github.com/darthmaim/gulp-to-ico/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238638209,"owners_count":19505559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gulp","gulp-plugin","ico","image"],"created_at":"2024-10-02T11:21:04.119Z","updated_at":"2025-10-28T11:30:27.547Z","avatar_url":"https://github.com/darthmaim.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![status](https://secure.travis-ci.org/darthmaim/gulp-to-ico.svg?branch=master)\n\nGulp wrapper for [to-ico](https://www.npmjs.com/package/to-ico). \n\n## Installation\n\nInstall package with NPM and add it to your development dependencies:\n\n`npm install --save-dev gulp-to-ico`\n\n## Information\n\n\u003ctable\u003e\n\u003ctr\u003e\n\u003ctd\u003ePackage\u003c/td\u003e\u003ctd\u003egulp-to-ico\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eDescription\u003c/td\u003e\n\u003ctd\u003eCombine multiple .png files into a single .ico file.\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003eNode Version\u003c/td\u003e\n\u003ctd\u003e\u003e= 4\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\n## Usage\n\n```js\nvar ico = require('gulp-to-ico');\n\ngulp.task('favicon', function() {\n  return gulp.src('./img/favicon/*.png')\n    .pipe(ico('favicon.ico'))\n    .pipe(gulp.dest('./dist/'));\n});\n```\n\nTo specify `cwd`, `path` and other [vinyl](https://github.com/wearefractal/vinyl) properties, gulp-to-ico accepts `Object` as first argument:\n\n```js\nvar ico = require('gulp-to-ico');\n\ngulp.task('scripts', function() {\n  return gulp.src(['./img/favicon/16.png', './img/favicon/32.png'])\n    .pipe(ico({ path: 'favicon.ico', stat: { mode: 0666 }}))\n    .pipe(gulp.dest('./dist/'));\n});\n```\n\nYou can pass options to the underlying [to-ico](https://github.com/kevva/to-ico) plugin as a second parameter.\n\n\n```js\nvar ico = require('gulp-to-ico');\n\ngulp.task('favicon', function() {\n  return gulp.src('./img/favicon/*.png')\n    .pipe(ico('favicon.ico', { resize: true, sizes: [16, 24, 32, 64] }))\n    .pipe(gulp.dest('./dist/'));\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarthmaim%2Fgulp-to-ico","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarthmaim%2Fgulp-to-ico","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarthmaim%2Fgulp-to-ico/lists"}