fix(core): update
This commit is contained in:
parent
57405ac944
commit
3d201016fd
@ -16,7 +16,7 @@ export class TsBundle {
|
|||||||
*/
|
*/
|
||||||
public async buildTest() {
|
public async buildTest() {
|
||||||
// create a bundle
|
// create a bundle
|
||||||
logger.log('info', `starting bundling for TEST now!`);
|
logger.log('info', `bundling for TEST!`);
|
||||||
const bundle = await plugins.rollup.rollup(this.optionsTest);
|
const bundle = await plugins.rollup.rollup(this.optionsTest);
|
||||||
bundle.generate(this.optionsTest.output);
|
bundle.generate(this.optionsTest.output);
|
||||||
bundle.write(this.optionsTest.output);
|
bundle.write(this.optionsTest.output);
|
||||||
@ -28,7 +28,7 @@ export class TsBundle {
|
|||||||
*/
|
*/
|
||||||
public async buildProduction() {
|
public async buildProduction() {
|
||||||
// create a bundle
|
// create a bundle
|
||||||
logger.log('info', `starting for PRODUCTION now!`);
|
logger.log('info', `bundling for PRODUCTION!`);
|
||||||
const bundle = await plugins.rollup.rollup(this.optionsProduction);
|
const bundle = await plugins.rollup.rollup(this.optionsProduction);
|
||||||
bundle.generate(this.optionsProduction.output);
|
bundle.generate(this.optionsProduction.output);
|
||||||
bundle.write(this.optionsProduction.output);
|
bundle.write(this.optionsProduction.output);
|
||||||
|
Loading…
Reference in New Issue
Block a user