Compare commits

...

6 Commits

Author SHA1 Message Date
686a428624 2.1.35 2022-03-11 17:41:00 +01:00
6772bb439c 2.1.34 2022-03-11 17:40:52 +01:00
3acab250db fix(core): update 2022-03-11 17:40:52 +01:00
ec90a006ce 2.1.33 2022-03-11 17:39:10 +01:00
30ba0c99fd 2.1.32 2022-03-11 17:38:54 +01:00
17a7749f23 fix(core): update 2022-03-11 17:38:54 +01:00
4 changed files with 6 additions and 6 deletions

2
cli.js
View File

@ -1,4 +1,4 @@
#!/usr/bin/env node
process.env.CLI_CALL = 'true';
const cliTool = require('./dist_ts/index');
const cliTool = await import('./dist_ts/index');
cliTool.runCli();

View File

@ -1,5 +1,5 @@
#!/usr/bin/env node
process.env.CLI_CALL = 'true';
require('@gitzone/tsrun');
const cliTool = require('./ts/index');
await import('@gitzone/tsrun');
const cliTool = await import('./ts/index.js');
cliTool.runCli();

4
package-lock.json generated
View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbuild",
"version": "2.1.31",
"version": "2.1.35",
"private": false,
"description": "TypeScript nightly to easily make use of latest features",
"main": "dist_ts/index.js",