Compare commits

...

2 Commits

Author SHA1 Message Date
576ec20e3c 1.0.96 2022-03-16 11:08:52 +01:00
6d48086266 fix(core): update 2022-03-16 11:08:52 +01:00
3 changed files with 6 additions and 3 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@gitzone/tsbundle",
"version": "1.0.95",
"version": "1.0.96",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@gitzone/tsbundle",
"version": "1.0.95",
"version": "1.0.96",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.17.5",

View File

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

View File

@ -33,6 +33,9 @@ export class TsBundleProcess {
argvArg: any
) {
// create a bundle
console.log('esbuild specific:');
console.log(`from: ${fromArg}`);
console.log((`to: ${toArg}`));
const esbuild = await plugins.esbuild.build({
entryPoints: [fromArg],
bundle: true,