mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-11 15:51:06 +00:00
8f78dd03af
- Add `npm run lint:fix` command - Cleanup inferIcon.js logic slightly
17 lines
426 B
JavaScript
17 lines
426 B
JavaScript
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'])
|
|
.on('error', handleError);
|
|
|
|
gulp.watch(PATHS.CLI_SRC_JS, ['build-cli'])
|
|
.on('error', handleError);
|
|
|
|
gulp.watch(PATHS.TEST_SRC_JS, ['build-tests'])
|
|
.on('error', handleError);
|
|
});
|