From d229e0ca3762379b71d9530ef6f5cbc9dc483a87 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sat, 28 Aug 2021 03:07:10 +0200 Subject: [PATCH] fix(core): update --- ts/tsbundle.class.tsbundleprocess.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/tsbundle.class.tsbundleprocess.ts b/ts/tsbundle.class.tsbundleprocess.ts index c4068db..2e16b83 100644 --- a/ts/tsbundle.class.tsbundleprocess.ts +++ b/ts/tsbundle.class.tsbundleprocess.ts @@ -115,7 +115,7 @@ export class TsBundleProcess { bundle.generate(buildOptions.output as plugins.rollup.OutputOptions); await bundle.write(buildOptions.output as plugins.rollup.OutputOptions); logger.log('ok', `Successfully bundled files!`); - break; + process.exit(0); case 'parcel': const parsedPath = plugins.path.parse(toArg); const parcelInstance = new plugins.smartparcel.Parcel(fromArg, parsedPath.dir, parsedPath.base); @@ -134,6 +134,7 @@ export class TsBundleProcess { bundle.generate(buildOptions.output as plugins.rollup.OutputOptions); await bundle.write(buildOptions.output as plugins.rollup.OutputOptions); logger.log('ok', `Successfully bundled files!`); + process.exit(0); } }