embark-area-51/lib/watch.js

36 lines
944 B
JavaScript
Raw Normal View History

2016-08-21 16:02:02 +00:00
/*jshint esversion: 6 */
2016-08-21 15:24:57 +00:00
var fs = require('fs');
var chokidar = require('chokidar');
var Watch = function(options) {
this.options = options;
};
Watch.prototype.start = function() {
var embarkConfig = JSON.parse(fs.readFileSync("embark.json"));
var appConfig = embarkConfig.app;
var filesToWatch = [];
for(var targetFile in appConfig) {
filesToWatch.push(appConfig[targetFile]);
}
// TODO: add callback to ready
console.log(filesToWatch);
var watcher = chokidar.watch(filesToWatch, {
ignored: /[\/\\]\./,
persistent: true,
ignoreInitial: true,
followSymlinks: true
});
watcher
.on('add', path => console.log(`File ${path} has been added`))
.on('change', path => console.log(`File ${path} has been changed`))
.on('unlink', path => console.log(`File ${path} has been removed`))
.on('ready', () => console.log('ready to watch changes'));
console.log("done!");
};
module.exports = Watch;