From 8f0941b00a7583b3848a648b1203c7e0ffea2443 Mon Sep 17 00:00:00 2001 From: Pascal Brandt Date: Fri, 8 Apr 2016 11:04:46 -0700 Subject: [PATCH] Unmangle. --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index b8f22dd..2554ecd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -156,11 +156,11 @@ gulp.task('lint', function() { .pipe(eslint()) .pipe(eslint.format()) .pipe(eslint.failAfterError()); -}); +}); gulp.task('compress', ['resources', 'html'], function() { return gulp.src('dist/**/*.js') - .pipe(uglify()) + .pipe(uglify({ mangle: false })) .pipe(gulp.dest('dist')) });