Compare commits

...

2 Commits

Author SHA1 Message Date
866c203856 2.0.13 2024-01-08 16:48:12 +01:00
3e673bca6b fix(core): update 2024-01-08 16:48:11 +01:00
3 changed files with 3 additions and 2 deletions

View File

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

View File

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

View File

@ -26,6 +26,7 @@ export class TsBundleProcess {
target: 'es2022',
entryNames: plugins.path.parse(toArg).name,
outdir: plugins.path.parse(toArg).dir,
splitting: true,
tsconfig: paths.tsconfigPath
});
}