@cabloy/cli 3.0.47 → 3.0.49

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.
@@ -187,8 +187,10 @@ export class LocalHelper {
187
187
  }
188
188
  async invokeCli(args, options) {
189
189
  await this.processHelper.spawnExe({
190
- cmd: 'node',
191
- args: ['--experimental-transform-types', '--loader=ts-node/esm', this.parseBrandPath()].concat(args),
190
+ cmd: 'tsx',
191
+ args: [this.parseBrandPath()].concat(args),
192
+ // cmd: 'node',
193
+ // args: ['--experimental-transform-types', getImportEsm(), this.parseBrandPath()].concat(args),
192
194
  options,
193
195
  });
194
196
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/cli",
3
3
  "type": "module",
4
- "version": "3.0.47",
4
+ "version": "3.0.49",
5
5
  "description": "@cabloy/cli",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -29,7 +29,7 @@
29
29
  "@babel/parser": "^7.26.5",
30
30
  "@cabloy/module-glob": "^5.2.26",
31
31
  "@cabloy/module-info": "^1.3.26",
32
- "@cabloy/process-helper": "^2.0.19",
32
+ "@cabloy/process-helper": "^2.0.20",
33
33
  "@cabloy/utils": "^1.0.41",
34
34
  "@cabloy/word-utils": "^2.0.1",
35
35
  "@npmcli/config": "^8.3.4",