From 8708127f3425da024c101b1b4e6f2a9c4659397c Mon Sep 17 00:00:00 2001 From: Daniel <50356015+danny007in@users.noreply.github.com> Date: Sun, 14 Nov 2021 15:58:01 +0530 Subject: [PATCH] :ambulance: gulp terser --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: '.' }))