Skip to content

Commit

Permalink
remove uglify for now, as it is incompatible with es6?
Browse files Browse the repository at this point in the history
  • Loading branch information
maurerle committed Aug 22, 2023
1 parent cf12df6 commit 9e8a3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulp/tasks/javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function (gulp, plugins, config, env) {
.on('error', function () {
this.emit('end');
})
.pipe(env.production(plugins.uglify({ output: { comments: 'all' } })))
// .pipe(env.production(plugins.uglify({ output: { comments: 'all' } })))
.pipe(env.development(plugins.sourcemaps.write('.', { addComment: true })))
.pipe(gulp.dest(config.build));
};
Expand Down

0 comments on commit 9e8a3e5

Please sign in to comment.