UNPKG

249 BJavaScriptView Raw
1const Future = require('fluture');
2const { watcher, validate } = require('./webpack');
3
4// watch :: Object config -> Future (Array Error) ()
5const watch = config => Future
6 .of(config)
7 .chain(validate)
8 .chain(watcher);
9
10module.exports = watch;