apeman-task-dply

2.0.0 • Public • Published

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
Name Type Default Description
options object Optional settings.

License

This software is released under the MIT License.

Links

/apeman-task-dply/

    Package Sidebar

    Install

    npm i apeman-task-dply

    Weekly Downloads

    3

    Version

    2.0.0

    License

    MIT

    Last publish

    Collaborators

    • okunishinishi