vona-cli-set-api 1.0.246 → 1.0.250

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.
@@ -3,6 +3,7 @@
3
3
  "title": "Vona",
4
4
  "private": true,
5
5
  "type": "module",
6
+ "packageManager": "pnpm@10.0.0",
6
7
  "description": "Vona is an intuitive, elegant and powerful Node.js framework for rapidly developing enterprise applications of any size",
7
8
  "repository": {
8
9
  "type": "git",
@@ -45,7 +46,7 @@
45
46
  }
46
47
  },
47
48
  "dependencies": {
48
- "vona": "^5.0.145"
49
+ "vona": "^5.0.146"
49
50
  },
50
51
  "devDependencies": {
51
52
  "@cabloy/lint": "^5.0.16",
@@ -35,7 +35,8 @@ export class CliBinDbReset extends BeanCliBase {
35
35
  }
36
36
  // run
37
37
  let args = [];
38
- args = args.concat(['--experimental-transform-types', getImportEsm(), testFile, projectPath]);
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(['--experimental-transform-types', getImportEsm(), testFile, projectPath]);
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: ['--experimental-transform-types', getImportEsm()],
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(['--experimental-transform-types', getImportEsm(), testFile, projectPath, (!!argv.coverage).toString(), patterns.join(',')]);
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.246",
4
+ "version": "1.0.250",
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.2",
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",
@@ -1,4 +1,4 @@
1
1
  import { register } from 'node:module';
2
2
  import { pathToFileURL } from 'node:url';
3
3
 
4
- register('ts-node/esm', pathToFileURL('./'));
4
+ register('ts-node-maintained/esm', pathToFileURL('./'));