vona-cli 1.0.44 → 1.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/vona.js +2 -2
- package/package.json +4 -4
package/dist/bin/vona.js
CHANGED
|
@@ -3,7 +3,7 @@ import path from 'node:path';
|
|
|
3
3
|
import { ProcessHelper } from '@cabloy/process-helper';
|
|
4
4
|
import fse from 'fs-extra';
|
|
5
5
|
const processHelper = new ProcessHelper(process.cwd());
|
|
6
|
-
let args = [
|
|
6
|
+
let args = [];
|
|
7
7
|
// bootstrapFile
|
|
8
8
|
let bootstrapFile = path.join(import.meta.dirname, '../bootstrap.ts');
|
|
9
9
|
if (!fse.existsSync(bootstrapFile)) {
|
|
@@ -12,4 +12,4 @@ if (!fse.existsSync(bootstrapFile)) {
|
|
|
12
12
|
args.push(bootstrapFile);
|
|
13
13
|
const rawArgv = process.argv.slice(2);
|
|
14
14
|
args = args.concat(rawArgv);
|
|
15
|
-
processHelper.spawnExe({ cmd: 'node', args });
|
|
15
|
+
processHelper.spawnExe({ cmd: 'ts-node', args });
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vona-cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.48",
|
|
5
5
|
"description": "vona cli",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@cabloy/cli": "^3.0.
|
|
33
|
-
"@cabloy/process-helper": "^2.0.
|
|
32
|
+
"@cabloy/cli": "^3.0.28",
|
|
33
|
+
"@cabloy/process-helper": "^2.0.18",
|
|
34
34
|
"fs-extra": "^11.2.0",
|
|
35
35
|
"ts-node": "^10.9.2",
|
|
36
|
-
"vona-cli-set-api": "^1.0.
|
|
36
|
+
"vona-cli-set-api": "^1.0.51"
|
|
37
37
|
},
|
|
38
38
|
"gitHead": "0eab9dc4a5622caffe89e7b1b3f02c08ccbc4c4b",
|
|
39
39
|
"scripts": {
|