apeman-task-contrib-coz

Apeman task contribution plugin to render bud files with coz


Keywords
apeman, task, contribution, coz
License
MIT
Install
npm install apeman-task-contrib-coz@1.0.2

Documentation

apeman-task-contrib-coz

Build Status Code Climate Code Coverage npm version

Apeman task contribution plugin to render bud files with coz

Installation

Install module via npm

$ npm install apeman-task-contrib-coz --save-dev

Usage

Define a task at $tasks property in you Apemanfile.

/**
 * This is example Apemanfile to use "apeman-task-contrib-coz".
 * @see https://github.com/okunishinishi/coz
 */

"use strict";

module.exports = {
    $pkg: {/*...*/},
    $tasks: {
        // Define your own task.
        "my-task-01": require('apeman-task-contrib-coz')("lib/**/.*.bud", "test/**/.*.bud", {

        });
    }
};

Then, run the task via apeman task command.

# Run the task from CLI.
$ apeman task "my-task-01"

Option

Values which can be passed to $options property.

Name Type Description
verbose Boolean Show verbose log.

License

This software is released under the MIT License.

Links