@cabloy/cli 3.0.47 → 3.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/lib/local.helper.js +4 -2
- package/package.json +1 -1
package/dist/lib/local.helper.js
CHANGED
|
@@ -187,8 +187,10 @@ export class LocalHelper {
|
|
|
187
187
|
}
|
|
188
188
|
async invokeCli(args, options) {
|
|
189
189
|
await this.processHelper.spawnExe({
|
|
190
|
-
cmd: '
|
|
191
|
-
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
|
}
|