osv-ui-mcp 1.0.1 → 1.0.2
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -247,10 +247,10 @@ async function handleOpenDashboard({ path: dir = '.', port }) {
|
|
|
247
247
|
);
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
// Spawn osv-ui detached
|
|
250
|
+
// Spawn osv-ui detached with discovery enabled
|
|
251
251
|
const child = spawn(
|
|
252
252
|
process.execPath,
|
|
253
|
-
[osvUiBin, absDir, `--port=${assignedPort}`, '--no-open'],
|
|
253
|
+
[osvUiBin, '-d', absDir, `--port=${assignedPort}`, '--no-open'],
|
|
254
254
|
{ detached: true, stdio: 'ignore' }
|
|
255
255
|
);
|
|
256
256
|
child.unref();
|