Enable toplevel mangling
This commit is contained in:
parent
c4598c2606
commit
10019ceb6d
|
@ -120,7 +120,9 @@ gulp.task('webpack', done => {
|
||||||
gulp.task('build:client:script', () =>
|
gulp.task('build:client:script', () =>
|
||||||
gulp.src(['./src/web/app/boot.js', './src/web/app/safe.js'])
|
gulp.src(['./src/web/app/boot.js', './src/web/app/safe.js'])
|
||||||
.pipe(replace('VERSION', JSON.stringify(version)))
|
.pipe(replace('VERSION', JSON.stringify(version)))
|
||||||
.pipe(isProduction ? uglify() : gutil.noop())
|
.pipe(isProduction ? uglify({
|
||||||
|
toplevel: true
|
||||||
|
}) : gutil.noop())
|
||||||
.pipe(gulp.dest('./built/web/assets/')) as any
|
.pipe(gulp.dest('./built/web/assets/')) as any
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue