2.0.0 • Published 9 years ago

apeman-task-dply v2.0.0

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

apeman-task-dply

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to run apeman dply command.

Installation

$ npm install apeman-task-dply --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-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
NameTypeDefaultDescription
optionsobjectOptional settings.

License

This software is released under the MIT License.

Links

2.0.0

9 years ago

1.0.1

10 years ago

1.0.0

10 years ago