Compare commits

...

2 Commits

Author SHA1 Message Date
49ecf9d4ca 2.0.14 2024-01-09 16:54:30 +01:00
7bd0032007 fix(core): update 2024-01-09 16:54:29 +01:00
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tsbundle", "name": "@git.zone/tsbundle",
"version": "2.0.13", "version": "2.0.14",
"private": false, "private": false,
"description": "a bundler using rollup for painless bundling of web projects", "description": "a bundler using rollup for painless bundling of web projects",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsbundle', name: '@git.zone/tsbundle',
version: '2.0.13', version: '2.0.14',
description: 'a bundler using rollup for painless bundling of web projects' description: 'a bundler using rollup for painless bundling of web projects'
} }

View File

@ -26,7 +26,7 @@ export class TsBundleProcess {
target: 'es2022', target: 'es2022',
entryNames: plugins.path.parse(toArg).name, entryNames: plugins.path.parse(toArg).name,
outdir: plugins.path.parse(toArg).dir, outdir: plugins.path.parse(toArg).dir,
splitting: true, // splitting: true,
tsconfig: paths.tsconfigPath tsconfig: paths.tsconfigPath
}); });
} }
@ -54,7 +54,7 @@ export class TsBundleProcess {
entryNames: 'bundle', entryNames: 'bundle',
outdir: plugins.path.parse(toArg).dir, outdir: plugins.path.parse(toArg).dir,
tsconfig: paths.tsconfigPath, tsconfig: paths.tsconfigPath,
splitting: true, // splitting: true,
chunkNames: 'chunks/[name]-[hash]', chunkNames: 'chunks/[name]-[hash]',
}); });
} }