diff --git a/gulpfile.js b/gulpfile.js index e5ca1189e..303c8ce36 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -224,7 +224,7 @@ const copyDistJs = () => // Minify JS const minifyDistJs = () => src(paths.dist.js + '/adminlte.js', { sourcemaps: true }) - .pipe(terser({ compress: { passes: 2 })) + .pipe(terser({ compress: { passes: 2 }})) .pipe(rename({ suffix: '.min' })) .pipe(dest(paths.dist.js, { sourcemaps: '.' }))