2.0.0 • Published 2 years ago

@enspirit/rescript-chokidar v2.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

rescript-chokidar

ReScript bindings for chokidar.

Usage

let watcher = Chokidar.watch(".", ());
let doit = (s:string) => Js.log(s);
Chokidar.on(watcher, "change", doit);
Chokidar.close(watcher, ());

Developers section

First and formost, configure your environment with npm install.

Specific ReScript aliases (clean, build, watch, test...) are defined in the package.json file to be used with npm run [alias].