codeep 1.1.28 → 1.1.29
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/renderer/App.js +1 -1
- package/package.json +1 -1
package/dist/renderer/App.js
CHANGED
|
@@ -6,6 +6,7 @@ import { Screen } from './Screen.js';
|
|
|
6
6
|
import { Input, LineEditor } from './Input.js';
|
|
7
7
|
import { fg, style, stringWidth } from './ansi.js';
|
|
8
8
|
import clipboardy from 'clipboardy';
|
|
9
|
+
import { spawn } from 'child_process';
|
|
9
10
|
// Primary color: #f02a30 (Codeep red)
|
|
10
11
|
const PRIMARY_COLOR = fg.rgb(240, 42, 48);
|
|
11
12
|
// Syntax highlighting colors (One Dark theme inspired)
|
|
@@ -1295,7 +1296,6 @@ export class App {
|
|
|
1295
1296
|
const cmd = process.platform === 'darwin' ? 'open'
|
|
1296
1297
|
: process.platform === 'win32' ? 'start'
|
|
1297
1298
|
: 'xdg-open';
|
|
1298
|
-
const { spawn } = require('child_process');
|
|
1299
1299
|
const child = spawn(cmd, [provider.subscribeUrl], { detached: true, stdio: 'ignore' });
|
|
1300
1300
|
child.unref();
|
|
1301
1301
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.29",
|
|
4
4
|
"description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|