3.0.0 • Published 9 years ago

apeman-task-noop v3.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

apeman-task-noop

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to do nothing.

Installation

$ npm install apeman-task-noop --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-noop */

'use strict'

module.exports = {
    $pkg: {/* ... */},
    $tasks: {
        // Define your own task.
        'my-task-01': require('apeman-task-noop')({
            //Options
        })
    }
}

Then,

$ apeman task my-task-01

Signature

define(options) -> function

apeman task to do nothing.

Args
NameTypeDefaultDescription
optionsobjectOptional settings.

License

This software is released under the MIT License.

Links

3.0.0

9 years ago

2.0.0

9 years ago

1.0.0

9 years ago