Skip to content

Commit

Permalink
electron watchers
Browse files Browse the repository at this point in the history
  • Loading branch information
steam0r committed Jun 25, 2024
1 parent 61a292f commit b197240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const minify = config.hasOwnProperty("minifyJs") ? config.minifyJs : false;
const watchers = [];
function _watch(done)
{
watchers.push(gulp.watch(["src_client/*.js", "src_client/**/*.js", "../shared/client/*.js", "../shared/client/**/*.js"], { "usePolling": true }, gulp.series(defaultSeries)));
watchers.push(gulp.watch(["src_client/*.js", "src_client/**/*.js", "../shared/**/*.js"], { "usePolling": true }, gulp.series(defaultSeries)));
done();
}

Expand Down

0 comments on commit b197240

Please sign in to comment.