apeman-task-ico
v1.0.4
Published
apeman task to generate ico file.
Downloads
7
Readme
apeman-task-ico
apeman task to generate ico file.
Installation
$ npm install apeman-task-ico --save-dev
Usage
- Define a task within Apemanfile.js
- Call the task via apeman task command.
Apemanfile.js
/** This is an example Apemanfile to use apeman-task-ico */
'use strict'
module.exports = {
$pkg: {/* ... */},
$tasks: {
// Define your own task.
'favicon:ico': require('apeman-task-ico')(
'src/images/favicon.png',
'public/favicon.ico',
{
//Options
size:64
}
)
}
}
Then,
#!/usr/bin/env bash
$ apeman task favicon:ico
Signature
define(options) -> function
apeman task to generate ico file.
Args
| Name | Type | Default | Description | | --- | ---- | --- | --- | | options | object | | Optional settings. | | options.size | number|number[] | [128, 64, 32] | Favicon size. |
License
This software is released under the MIT License.