vona-cli-set-api 1.0.246 → 1.0.248
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/cli/templates/create/project/basic/boilerplate/package.original.json +1 -1
- package/dist/lib/bean/cli.bin.dbReset.js +2 -1
- package/dist/lib/bean/cli.bin.demo.js +2 -1
- package/dist/lib/bean/cli.bin.dev.js +1 -1
- package/dist/lib/bean/cli.bin.test.js +2 -1
- package/package.json +2 -2
- package/templates/app/register.js +1 -1
|
@@ -35,7 +35,8 @@ export class CliBinDbReset extends BeanCliBase {
|
|
|
35
35
|
}
|
|
36
36
|
// run
|
|
37
37
|
let args = [];
|
|
38
|
-
args = args.concat([
|
|
38
|
+
args = args.concat([getImportEsm(), testFile, projectPath]);
|
|
39
|
+
// args = args.concat(['--experimental-transform-types', getImportEsm(), testFile, projectPath]);
|
|
39
40
|
await this.helper.spawnExe({
|
|
40
41
|
cmd: 'node',
|
|
41
42
|
args,
|
|
@@ -35,7 +35,8 @@ export class CliBinDemo extends BeanCliBase {
|
|
|
35
35
|
}
|
|
36
36
|
// run
|
|
37
37
|
let args = [];
|
|
38
|
-
args = args.concat([
|
|
38
|
+
args = args.concat([getImportEsm(), testFile, projectPath]);
|
|
39
|
+
// args = args.concat(['--experimental-transform-types', getImportEsm(), testFile, projectPath]);
|
|
39
40
|
const pos = process.argv.indexOf(':bin:demo');
|
|
40
41
|
if (pos > -1) {
|
|
41
42
|
args = args.concat(process.argv.slice(pos + 1));
|
|
@@ -33,7 +33,7 @@ export class CliBinDev extends BeanCliBase {
|
|
|
33
33
|
script: '.vona/bootstrap.ts',
|
|
34
34
|
cwd: projectPath,
|
|
35
35
|
exec: 'node',
|
|
36
|
-
execArgs: [
|
|
36
|
+
execArgs: [getImportEsm()],
|
|
37
37
|
// execArgs: ['--experimental-transform-types', getImportEsm(), '--trace-deprecation'],
|
|
38
38
|
// signal: 'SIGHUP',
|
|
39
39
|
});
|
|
@@ -48,7 +48,8 @@ export class CliBinTest extends BeanCliBase {
|
|
|
48
48
|
if (process.env.TEST_WHYISNODERUNNING === 'true') {
|
|
49
49
|
args.push('--import=why-is-node-running/include');
|
|
50
50
|
}
|
|
51
|
-
args = args.concat([
|
|
51
|
+
args = args.concat([getImportEsm(), testFile, projectPath, (!!argv.coverage).toString(), patterns.join(',')]);
|
|
52
|
+
// args = args.concat(['--experimental-transform-types', getImportEsm(), testFile, projectPath, (!!argv.coverage).toString(), patterns.join(',')]);
|
|
52
53
|
// ignore error special in windows
|
|
53
54
|
await catchError(() => {
|
|
54
55
|
return this.helper.spawnExe({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vona-cli-set-api",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.248",
|
|
5
5
|
"description": "vona cli-set-api",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"randomatic": "^3.1.1",
|
|
59
59
|
"rimraf": "^6.0.1",
|
|
60
60
|
"rollup": "^4.34.8",
|
|
61
|
-
"ts-node": "^10.9.
|
|
61
|
+
"ts-node-maintained": "^10.9.6",
|
|
62
62
|
"urllib": "^4.6.11",
|
|
63
63
|
"uuid": "^11.1.0",
|
|
64
64
|
"vona-core": "^5.0.66",
|