opencode-antigravity-config 1.0.4 → 1.0.6
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/README.md +1 -4
- package/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,10 +5,7 @@ GUI installer for [Antigravity OpenCode](https://opencode.ai) configuration stac
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
#
|
|
9
|
-
npx opencode-antigravity-config
|
|
10
|
-
|
|
11
|
-
# Option 2: Install globally
|
|
8
|
+
# Install globally
|
|
12
9
|
npm install -g opencode-antigravity-config
|
|
13
10
|
|
|
14
11
|
# Launch the installer GUI
|
package/main.js
CHANGED
|
@@ -71,7 +71,7 @@ ipcMain.on('run-opencode-cli', () => {
|
|
|
71
71
|
});
|
|
72
72
|
ipcMain.on('run-opencode-web', () => {
|
|
73
73
|
if (process.platform === 'win32') {
|
|
74
|
-
spawn('cmd.exe', ['/c', 'start', 'cmd', '/k', 'opencode --port 8080'], { detached: true, stdio: 'ignore' });
|
|
74
|
+
spawn('cmd.exe', ['/c', 'start', 'cmd', '/k', 'opencode web --port 8080'], { detached: true, stdio: 'ignore' });
|
|
75
75
|
}
|
|
76
76
|
});
|
|
77
77
|
|