From 7bd0032007b7e6b66d3c0c8520089080444a1512 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 9 Jan 2024 16:54:29 +0100 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/mod_esbuild/index.child.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 2b919b2..531319d 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsbundle', - version: '2.0.13', + version: '2.0.14', description: 'a bundler using rollup for painless bundling of web projects' } diff --git a/ts/mod_esbuild/index.child.ts b/ts/mod_esbuild/index.child.ts index 5676fea..d06e3eb 100644 --- a/ts/mod_esbuild/index.child.ts +++ b/ts/mod_esbuild/index.child.ts @@ -26,7 +26,7 @@ export class TsBundleProcess { target: 'es2022', entryNames: plugins.path.parse(toArg).name, outdir: plugins.path.parse(toArg).dir, - splitting: true, + // splitting: true, tsconfig: paths.tsconfigPath }); } @@ -54,7 +54,7 @@ export class TsBundleProcess { entryNames: 'bundle', outdir: plugins.path.parse(toArg).dir, tsconfig: paths.tsconfigPath, - splitting: true, + // splitting: true, chunkNames: 'chunks/[name]-[hash]', }); }