@cabloy/cli 3.0.64 → 3.0.66

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.
@@ -143,9 +143,9 @@ export class LocalHelper {
143
143
  }
144
144
  async pnpmInstall() {
145
145
  // args
146
- const args = ['install', '--force'];
146
+ const args = ['install'];
147
147
  // log
148
- await this.console.log('===> pnpm install --force');
148
+ await this.console.log('===> pnpm install');
149
149
  // spawn
150
150
  await this.spawnCmd({
151
151
  cmd: 'pnpm',
package/dist/start.js CHANGED
@@ -54,8 +54,8 @@ export class CabloyCommand extends CommonBin {
54
54
  }
55
55
  const command = new CliCommand(rawArgv, { meta, argv });
56
56
  await command[DISPATCH]();
57
- // need not force exit
58
- // process.exit(0);
57
+ // force exit
58
+ process.exit(0);
59
59
  }
60
60
  _prepareCliFullName(cliName) {
61
61
  if (!cliName) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/cli",
3
3
  "type": "module",
4
- "version": "3.0.64",
4
+ "version": "3.0.66",
5
5
  "description": "@cabloy/cli",
6
6
  "publishConfig": {
7
7
  "access": "public"