apeman-task-wtch

3.0.2 • Public • Published

apeman-task-wtch

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to run apeman wtch command.

Installation

$ npm install apeman-task-wtch --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-wtch */
 
'use strict'
 
module.exports = {
  $pkg: { /* ... */ },
  $tasks: {
    // Define your own task.
    'wtch:myapp': require('apeman-task-watch')({
      configuration: 'sub_apps/my_app_01/Apemanfile.json'
    })
  },
  $wtchs: {
    'my-watch-01': {
      pattern: '*.js',
      action: function () {
        /* ... */
      }
    }
  }
}

Then,

$ apeman task wtch:myapp

Signature

apemanTaskWtch(options) -> function

apeman task to run apeman wch command.

Args
Name Type Default Description
options object Optional settings.
options.configuration string Apeman configuration path.
options.list boolean List available watches.
options.pattern string Wtch name pattern.

License

This software is released under the MIT License.

Links

Readme

Keywords

Package Sidebar

Install

npm i apeman-task-wtch

Weekly Downloads

0

Version

3.0.2

License

MIT

Last publish

Collaborators

  • okunishinishi