1.0.27 • Published 5 years ago

@emit-js/watchman v1.0.27

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@emit-js/watchman

emit watchman triggers

watchman

Install

npm install -g @emit-js/cli @emit-js/spawn @emit-js/watchman

You'll also need to start watchman (brew install watchman).

Usage

In the examples below, we want to trigger npm run build when *.js changes:

emit watchman --glob="*.js" --command=npm --args=run --args=build

Detect glob from script entry

If you have a package.json script with the glob somewhere in it:

{
  "scripts": {
    "build": "babel *.js --out-dir dist --source-maps"
  }
}

The --script option is a quick way to add a trigger:

emit watchman --script=build
1.0.27

5 years ago

1.0.26

5 years ago

1.0.24

5 years ago