apeman-task-ico

apeman task to generate ico file.

Usage no npm install needed!

<script type="module">
  import apemanTaskIco from 'https://cdn.skypack.dev/apeman-task-ico';
</script>

README

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