@agentvault/agentvault 0.14.3 → 0.14.4
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 +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -49256,7 +49256,7 @@ function collectPorts(config) {
|
|
|
49256
49256
|
}
|
|
49257
49257
|
return ports;
|
|
49258
49258
|
}
|
|
49259
|
-
function findNextPort(config, startPort =
|
|
49259
|
+
function findNextPort(config, startPort = 18800) {
|
|
49260
49260
|
const ports = collectPorts(config);
|
|
49261
49261
|
if (ports.length === 0) return startPort;
|
|
49262
49262
|
return Math.max(...ports, startPort - 1) + 1;
|