apeman-task-dply
v2.0.0
Published
apeman task to run apeman dply command.
Downloads
4
Readme
apeman-task-dply
apeman task to run apeman dply command.
Installation
$ npm install apeman-task-dply --save-dev
Usage
- Define a task within Apemanfile.js
- Call the task via apeman task command.
Apemanfile.js
/** This is an example Apemanfile to use apeman-task-dply */
'use strict'
module.exports = {
$pkg: {/*...*/},
get $tasks() {
const dply = require('apeman-task-dply')
return {
'dply:create': dply({
}),
'dply:remove': dply({
delete: true
}),
'dply:list': dply({
list: true
})
}
}
}
Then,
$ apeman task dply:create
Signature
define(options) -> function
apeman task to run apeman dply command.
Args
| Name | Type | Default | Description | | --- | ---- | --- | --- | | options | object | | Optional settings. |
License
This software is released under the MIT License.