Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
49ecf9d4ca | |||
7bd0032007 | |||
866c203856 | |||
3e673bca6b | |||
5c3dfe0920 | |||
c08a9065a1 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@git.zone/tsbundle",
|
||||
"version": "2.0.11",
|
||||
"version": "2.0.14",
|
||||
"private": false,
|
||||
"description": "a bundler using rollup for painless bundling of web projects",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@git.zone/tsbundle',
|
||||
version: '2.0.11',
|
||||
version: '2.0.14',
|
||||
description: 'a bundler using rollup for painless bundling of web projects'
|
||||
}
|
||||
|
@ -24,8 +24,9 @@ export class TsBundleProcess {
|
||||
sourcemap: true,
|
||||
format: 'esm',
|
||||
target: 'es2022',
|
||||
entryNames: 'bundle',
|
||||
entryNames: plugins.path.parse(toArg).name,
|
||||
outdir: plugins.path.parse(toArg).dir,
|
||||
// splitting: true,
|
||||
tsconfig: paths.tsconfigPath
|
||||
});
|
||||
}
|
||||
@ -53,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]',
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user