From 31b26d03b4db76b382f0939dd4a10f33ef5fd529 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Sun, 30 Dec 2018 04:01:06 -0700 Subject: [PATCH] fix lint error in Gulp build --- gulpfile.js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js/index.js b/gulpfile.js/index.js index 64c4795..d2f2396 100644 --- a/gulpfile.js/index.js +++ b/gulpfile.js/index.js @@ -15,7 +15,7 @@ const { remove, lintCss, lintJs, format, build, pack, previewPages, previewServe const glob = { all: [srcDir, previewSrcDir], css: `${srcDir}/css/**/*.css`, - js: ['gulpfile.js/**/*.js', `${srcDir}/{helpers,js}/**/*.js`] + js: ['gulpfile.js/**/*.js', `${srcDir}/{helpers,js}/**/*.js`], } const cleanTask = task({ -- 2.11.0