codex-lens 0.1.3 → 0.1.5
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/cli.js +4 -1
- package/package.json +1 -1
- package/src/cli.js +6 -1
package/dist/cli.js
CHANGED
|
@@ -54,7 +54,10 @@ async function main() {
|
|
|
54
54
|
const aggregator = createAggregator(codexBinary, projectRoot);
|
|
55
55
|
await aggregator.start(PROXY_PORT);
|
|
56
56
|
logger.info("All services started");
|
|
57
|
-
|
|
57
|
+
spawn("cmd", ["/c", "start", "http://localhost:5174"], {
|
|
58
|
+
detached: true,
|
|
59
|
+
stdio: "ignore"
|
|
60
|
+
});
|
|
58
61
|
logger.info("Press Ctrl+C to stop");
|
|
59
62
|
process.on("SIGINT", () => {
|
|
60
63
|
logger.info("Received SIGINT, shutting down...");
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -70,7 +70,12 @@ async function main() {
|
|
|
70
70
|
await aggregator.start(PROXY_PORT);
|
|
71
71
|
|
|
72
72
|
logger.info('All services started');
|
|
73
|
-
|
|
73
|
+
|
|
74
|
+
spawn('cmd', ['/c', 'start', 'http://localhost:5174'], {
|
|
75
|
+
detached: true,
|
|
76
|
+
stdio: 'ignore',
|
|
77
|
+
});
|
|
78
|
+
|
|
74
79
|
logger.info('Press Ctrl+C to stop');
|
|
75
80
|
|
|
76
81
|
process.on('SIGINT', () => {
|