start-watch

3.0.0 • Public • Published

start-watch

npm linux build windows build coverage deps

Watch task for Start.

Install

npm install --save-dev start-watch
# or 
yarn add --dev start-watch

Usage

import Start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import clean from 'start-clean';
import watch from 'start-watch';
import read from 'start-read';
import babel from 'start-babel';
import write from 'start-write';
import mocha from 'start-mocha';
import inputConnector from 'start-input-connector';
 
cosnt start = Start(reporter());
 
export const dev = () => start(
  files('build/'),
  clean(),
  watch('lib/**/*.js')((changedFiles) => start(
    inputConnector(changedFiles),
    read(),
    babel(),
    write('build/')
  ))
);

See documentation for details.

👉 Note that this task may not work properly with tasks like start-webpack and start-karma which have their own file watching functionality.

Arguments

watch(files, events, options)(callback)

Readme

Keywords

Package Sidebar

Install

npm i start-watch

Weekly Downloads

5

Version

3.0.0

License

MIT

Last publish

Collaborators

  • deepsweet