apeman-task-ico

1.0.4 • Public • Published

apeman-task-ico

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to generate ico file.

Installation

$ npm install apeman-task-ico --save-dev

Usage

  1. Define a task within Apemanfile.js
  2. 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]

License

This software is released under the MIT License.

Links

Readme

Keywords

Package Sidebar

Install

npm i apeman-task-ico

Weekly Downloads

1

Version

1.0.4

License

MIT

Last publish

Collaborators

  • okunishinishi