0.1.1 • Published 5 years ago

@enspirit/bs-chokidar v0.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

bs-chokidar

BuckleScript 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 BuckleScript aliases (clean, build, watch, test...) are defined in the package.json file to be used with npm run [alias].