From bc94d9598ec4bec083b73845d39cd4e0038ec834 Mon Sep 17 00:00:00 2001 From: hakimel Date: Wed, 10 Nov 2021 21:14:05 +0100 Subject: [PATCH] roll back unintended change to build --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 9e35d9f..ce55eb8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -289,13 +289,13 @@ gulp.task('serve', () => { connect.server({ root: root, port: port, - host: '0.0.0.0', + host: 'localhost', livereload: true }) gulp.watch(['*.html', '*.md'], gulp.series('reload')) - gulp.watch(['js/**'], gulp.series('js', 'reload')) + gulp.watch(['js/**'], gulp.series('js', 'reload', 'eslint')) gulp.watch(['plugin/**/plugin.js'], gulp.series('plugins', 'reload'))