Compare commits

...

10 Commits

Author SHA1 Message Date
6dcb3f7c2a 2.0.5 2022-06-02 01:00:49 +02:00
daba025307 fix(core): update 2022-06-02 01:00:49 +02:00
00383171ff 2.0.4 2022-05-25 11:56:11 +02:00
2ce9b08911 fix(core): update 2022-05-25 11:56:10 +02:00
d603baf65e 2.0.3 2022-05-04 18:51:15 +02:00
50e4909984 fix(core): update 2022-05-04 18:51:15 +02:00
7208274156 2.0.2 2022-05-04 17:39:00 +02:00
41ec42d068 fix(core): update 2022-05-04 17:39:00 +02:00
d159b9a6a8 2.0.1 2022-05-04 17:20:28 +02:00
45d0d74559 fix(core): update 2022-05-04 17:20:28 +02:00
7 changed files with 1493 additions and 10667 deletions

11
assets/tsconfig.json Normal file
View File

@ -0,0 +1,11 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node12",
"useDefineForClassFields": false,
"preserveValueImports": true,
"esModuleInterop": true
}
}

12112
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tsbundle", "name": "@gitzone/tsbundle",
"version": "2.0.0", "version": "2.0.5",
"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",
@ -16,13 +16,13 @@
"tsbundle": "cli.js" "tsbundle": "cli.js"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.59", "@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsrun": "^1.2.31", "@gitzone/tsrun": "^1.2.35",
"@gitzone/tstest": "^1.0.69", "@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.2" "@pushrocks/tapbundle": "^5.0.3"
}, },
"dependencies": { "dependencies": {
"@pushrocks/early": "^3.0.6", "@pushrocks/early": "^4.0.3",
"@pushrocks/smartcli": "^3.0.14", "@pushrocks/smartcli": "^3.0.14",
"@pushrocks/smartfile": "^9.0.6", "@pushrocks/smartfile": "^9.0.6",
"@pushrocks/smartlog": "^2.0.44", "@pushrocks/smartlog": "^2.0.44",
@ -31,10 +31,10 @@
"@pushrocks/smartpromise": "^3.1.7", "@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartspawn": "^2.0.9", "@pushrocks/smartspawn": "^2.0.9",
"@types/html-minifier": "^4.0.2", "@types/html-minifier": "^4.0.2",
"@types/node": "^17.0.21", "@types/node": "^17.0.38",
"esbuild": "0.14.27", "esbuild": "0.14.27",
"html-minifier": "^4.0.0", "html-minifier": "^4.0.0",
"typescript": "4.7.0" "typescript": "^4.7.2"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@gitzone/tsbundle', name: '@gitzone/tsbundle',
version: '2.0.0', version: '2.0.5',
description: 'a bundler using rollup for painless bundling of web projects' description: 'a bundler using rollup for painless bundling of web projects'
} }

View File

@ -48,7 +48,8 @@ export class TsBundleProcess {
format: 'esm', format: 'esm',
target: 'es2020', target: 'es2020',
minify: true, minify: true,
outfile: toArg outfile: toArg,
tsconfig: paths.tsconfigPath
}); });
} }
} }

View File

@ -8,4 +8,4 @@ export const packageDir = plugins.path.join(
export const htmlDir = plugins.path.join(cwd, './html'); export const htmlDir = plugins.path.join(cwd, './html');
export const distServeDir = plugins.path.join(cwd, './dist_serve'); export const distServeDir = plugins.path.join(cwd, './dist_serve');
export const assetsDir = plugins.path.join(packageDir, 'assets'); export const assetsDir = plugins.path.join(packageDir, 'assets');
export const tsconfigPath = plugins.path.join(packageDir, './tsconfig.json'); export const tsconfigPath = plugins.path.join(assetsDir, './tsconfig.json');

View File

@ -1,11 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
"experimentalDecorators": true, "experimentalDecorators": true,
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node12",
"useDefineForClassFields": false, "useDefineForClassFields": false,
"preserveValueImports": true, "target": "ES2022",
"esModuleInterop": true "module": "ES2022",
"moduleResolution": "nodenext"
} }
} }