1.0.0 • Published 9 years ago

apeman-task-need v1.0.0

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

apeman-task-need

Build Status Code Climate Code Coverage npm Version

apeman task to run apeman need command.

Installation

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

Usage

  1. Define a task within Apemanfile.js
  2. Call the task via apeman task command.

Apemanfile.js

/** This example Apemanfile to use apeman-task-need */

"use strict";

module.exports = {
    $pkg: {/*...*/},
    $tasks: {
        // Define your own task.
        'my-task-01': require('apeman-task-need')({
            //Options
        })
    },
    $needs:{
        "apeman":{"how":"npm i apeman -g"}
    }
};

Then,

$ apeman task my-task-01

Options

KeyTypeDefaultDescription
configurationstringPath of Apemanfile.js or apeman project directory.

License

This software is released under the MIT License.

Links

1.0.0

9 years ago