Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamfirecracker/grunt-png2icns
Generate ICNS file from multiple PNG files with icns.
https://github.com/iamfirecracker/grunt-png2icns
Last synced: 13 days ago
JSON representation
Generate ICNS file from multiple PNG files with icns.
- Host: GitHub
- URL: https://github.com/iamfirecracker/grunt-png2icns
- Owner: iamFIREcracker
- Created: 2015-12-30T14:49:54.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-18T20:02:33.000Z (almost 9 years ago)
- Last Synced: 2023-03-10T23:52:45.390Z (almost 2 years ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
grunt-png2icns
=============Generate ICNS file from multiple PNG files with png2icns.
INSTALL
-------This Grunt plugin does not available in npm registry yet, so you must install
from my GitHub repository:$ npm install @iamFIREcracker/grunt-png2icns
Then, load this task in `Gruntfile.js` of your project:
loadNpmTask('grunt-png2icns');
CONFIGURE
---------Task name is `png2icns`.
png2icns: {
main: {
dest: 'build/icon.icns',
src: [
'build/img/icon-16.png',
'build/img/icon-256.png',
'build/img/icon-32.png',
'build/img/icon-48.png'
]
},osx: {
options: {
// Specify renamed command name for working without modifying PATH
cmd: 'png2icns'
},dest: 'build/icon.icns',
src: [
'build/img/icon-16.png',
'build/img/icon-32.png'
]
}
}Enjoy!