@jojonax/codex-copilot 1.3.3 → 1.3.4

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.
Files changed (2) hide show
  1. package/bin/cli.js +4 -4
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -61,11 +61,11 @@ async function main() {
61
61
  process.exit(1);
62
62
  }
63
63
  await status(projectDir);
64
- break;
64
+ process.exit(0);
65
65
 
66
66
  case 'reset':
67
67
  await reset(projectDir);
68
- break;
68
+ process.exit(0);
69
69
 
70
70
  case 'update':
71
71
  log.info('Updating to latest version...');
@@ -75,7 +75,7 @@ async function main() {
75
75
  } catch {
76
76
  log.error('Update failed. Try manually: npm install -g @jojonax/codex-copilot@latest --force');
77
77
  }
78
- break;
78
+ process.exit(0);
79
79
 
80
80
  default:
81
81
  console.log(' Usage: codex-copilot <command>');
@@ -97,7 +97,7 @@ async function main() {
97
97
  console.log('');
98
98
  console.log(' \x1b[36mⓘ This is a help page. Exit and run the commands above directly in your terminal.\x1b[0m');
99
99
  console.log('');
100
- break;
100
+ process.exit(0);
101
101
  }
102
102
  } catch (err) {
103
103
  log.error(`Execution failed: ${err.message}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jojonax/codex-copilot",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "PRD-driven automated development orchestrator for CodeX / Cursor",
5
5
  "bin": {
6
6
  "codex-copilot": "./bin/cli.js"