From afabc25037adc8589120bdcc534196b175c5763b Mon Sep 17 00:00:00 2001 From: Adhityaa Chandrasekar Date: Thu, 20 Dec 2018 05:26:03 -0500 Subject: [PATCH] frontend: do not uglify devel JS files --- frontend/gulpfile.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index 205ce57..775527f 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -108,7 +108,6 @@ gulp.task("js-devel", function () { .pipe(sourcemaps.init()) .pipe(concat(outputFile)) .pipe(rename(outputFile)) - .pipe(uglify()) .pipe(sourcemaps.write()) .pipe(gulp.dest(develPath)) }