Nativefier/gulp/watch.js

17 lines
426 B
JavaScript
Raw Normal View History

2016-02-27 17:45:44 +01:00
import gulp from 'gulp';
import PATHS from './helpers/src-paths';
gulp.task('watch', ['build'], () => {
const handleError = function (error) {
console.error(error);
};
gulp.watch(PATHS.APP_ALL, ['build-app'])
2016-02-27 17:45:44 +01:00
.on('error', handleError);
gulp.watch(PATHS.CLI_SRC_JS, ['build-cli'])
2016-02-27 17:45:44 +01:00
.on('error', handleError);
gulp.watch(PATHS.TEST_SRC_JS, ['build-tests'])
2016-02-27 17:45:44 +01:00
.on('error', handleError);
});