apeman-task-kill

2.0.1 • Public • Published

apeman-task-kill

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to kill process after task done.

Installation

$ npm install apeman-task-kill --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-kill */
 
'use strict'
 
module.exports = {
  $pkg: { /* ... */ },
  $tasks: {
    'process:kill': require('apeman-task-kill')({
      // Options
    }),
    // Kill process after something
    'do-something-and-kill': [
      'some-process-keeping-task',
      'process:kill'
    ]
  }
}
 

Then,

$ apeman task process:kill

Signature

apemanTaskKill(options) -> function

apeman task to kill process after task done.

Args
Name Type Default Description
options object Optional settings.
options.delay number 100 Delay to kill.

License

This software is released under the MIT License.

Links

/apeman-task-kill/

    Package Sidebar

    Install

    npm i apeman-task-kill

    Weekly Downloads

    4

    Version

    2.0.1

    License

    MIT

    Last publish

    Collaborators

    • okunishinishi