Compare commits

...

2 Commits

Author SHA1 Message Date
d159b9a6a8 2.0.1 2022-05-04 17:20:28 +02:00
45d0d74559 fix(core): update 2022-05-04 17:20:28 +02:00
4 changed files with 6 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@gitzone/tsbundle",
"version": "2.0.0",
"version": "2.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@gitzone/tsbundle",
"version": "2.0.0",
"version": "2.0.1",
"license": "MIT",
"dependencies": {
"@pushrocks/early": "^3.0.6",

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbundle",
"version": "2.0.0",
"version": "2.0.1",
"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: '@gitzone/tsbundle',
version: '2.0.0',
version: '2.0.1',
description: 'a bundler using rollup for painless bundling of web projects'
}

View File

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