apeman-task-need
v1.0.0
Published
apeman task to run apeman need command.
Downloads
13
Readme
apeman-task-need
apeman task to run apeman need command.
Installation
$ npm install apeman-task-need --save-dev
Usage
- Define a task within Apemanfile.js
- 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
| Key | Type | Default | Description | | --- | ---- | --- | --- | | configuration | string | Path of Apemanfile.js or apeman project directory. |
License
This software is released under the MIT License.