1
0
mirror of https://github.com/bitwarden/web synced 2025-12-10 21:33:16 +00:00

disable uglify for now

This commit is contained in:
Kyle Spearrin
2018-03-24 20:55:00 -04:00
parent d083f1ddc3
commit 3160d3f275

View File

@@ -78,7 +78,7 @@ gulp.task('min:js', ['clean:js'], function () {
], { base: '.' }) ], { base: '.' })
.pipe(preprocess({ context: { cacheTag: randomString, selfHosted: selfHosted } })) .pipe(preprocess({ context: { cacheTag: randomString, selfHosted: selfHosted } }))
.pipe(concat(paths.concatJsDest)) .pipe(concat(paths.concatJsDest))
.pipe(uglify()) //.pipe(uglify())
.pipe(gulp.dest('.')); .pipe(gulp.dest('.'));
}); });
@@ -396,7 +396,7 @@ gulp.task('dist:js:app', function () {
.pipe(preprocess({ context: { cacheTag: randomString, selfHosted: selfHosted } })) .pipe(preprocess({ context: { cacheTag: randomString, selfHosted: selfHosted } }))
.pipe(concat(paths.dist + '/js/app.min.js')) .pipe(concat(paths.dist + '/js/app.min.js'))
.pipe(ngAnnotate()) .pipe(ngAnnotate())
.pipe(uglify()) //.pipe(uglify())
.pipe(gulp.dest('.')); .pipe(gulp.dest('.'));
}); });
@@ -408,7 +408,7 @@ gulp.task('dist:js:fallback', function () {
merge(mainStream) merge(mainStream)
.pipe(preprocess({ context: { cacheTag: randomString, selfHosted: selfHosted } })) .pipe(preprocess({ context: { cacheTag: randomString, selfHosted: selfHosted } }))
.pipe(uglify()) //.pipe(uglify())
.pipe(rename({ suffix: '.min' })) .pipe(rename({ suffix: '.min' }))
.pipe(gulp.dest(paths.dist + 'js')); .pipe(gulp.dest(paths.dist + 'js'));
}); });
@@ -421,7 +421,7 @@ gulp.task('dist:js:u2f', function () {
merge(mainStream) merge(mainStream)
.pipe(concat(paths.dist + '/js/u2f.min.js')) .pipe(concat(paths.dist + '/js/u2f.min.js'))
.pipe(uglify()) //.pipe(uglify())
.pipe(gulp.dest('.')); .pipe(gulp.dest('.'));
}); });
@@ -436,7 +436,7 @@ gulp.task('dist:js:lib', function () {
'!' + paths.libDir + 'jquery/**/*' '!' + paths.libDir + 'jquery/**/*'
]) ])
.pipe(concat(paths.dist + '/js/lib.min.js')) .pipe(concat(paths.dist + '/js/lib.min.js'))
.pipe(uglify()) //.pipe(uglify())
.pipe(gulp.dest('.')); .pipe(gulp.dest('.'));
}); });