fix(core): update

This commit is contained in:
Philipp Kunz 2019-10-06 01:21:32 +02:00
parent eacda66c43
commit 2b794967d2

View File

@ -88,10 +88,8 @@ export class TsBundle {
const productionOptions = this.getBaseOptions(fromArg, toArg); const productionOptions = this.getBaseOptions(fromArg, toArg);
productionOptions.plugins.push(plugins.rollupTerser({ productionOptions.plugins.push(plugins.rollupTerser({
compress: true, compress: true,
mangle: false, mangle: true,
toplevel: false, sourcemap: false
keep_classnames: true,
sourcemap: true
})); }));
return productionOptions; return productionOptions;
} }