Browse Source

:ambulance: gulp terser

Daniel 3 years ago
parent
commit
8708127f34
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gulpfile.js

+ 1 - 1
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: '.' }))