coconuts 1.0.12 → 1.0.14

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.js +2 -2
  2. package/package.json +2 -2
package/bin.js CHANGED
@@ -70,13 +70,13 @@ if (command === 'serve') {
70
70
 
71
71
  } catch (error) {
72
72
  console.error('❌ Failed to start GAIT web interface:', error);
73
- process.exit(1);
73
+ process.exit(0);
74
74
  }
75
75
 
76
76
  } else {
77
77
  // Forward other commands to the CLI
78
78
  try {
79
- await import('@lovelybunch/cli/dist/cli.js');
79
+ await import('@lovelybunch/cli');
80
80
  } catch (error) {
81
81
  console.error('❌ Failed to load CLI:', error);
82
82
  console.error(' Make sure @lovelybunch/cli is built and available.');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coconuts",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "Command-line interface wrapper for GAIT",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@lovelybunch/api": "^1.0.11",
22
- "@lovelybunch/cli": "^1.0.11"
22
+ "@lovelybunch/cli": "^1.0.12"
23
23
  },
24
24
  "engines": {
25
25
  "node": ">=18.0.0"