apeman-task-wtch

apeman task to run apeman wtch command.

Usage no npm install needed!

<script type="module">
  import apemanTaskWtch from 'https://cdn.skypack.dev/apeman-task-wtch';
</script>

README

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