@prisma/cli-init 0.0.0-dev.202512241311 → 0.0.0-dev.202512241337
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/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2379,6 +2379,9 @@ function extractUsedPorts(name, servers) {
|
|
|
2379
2379
|
}
|
|
2380
2380
|
async function assertPickablePort(options) {
|
|
2381
2381
|
const { debug: debug3, otherRequestedPorts, portKey, portsUsedByOtherServers, requestedPort } = options;
|
|
2382
|
+
if (requestedPort === ANY_PORT) {
|
|
2383
|
+
return;
|
|
2384
|
+
}
|
|
2382
2385
|
if (requestedPort in portsUsedByOtherServers) {
|
|
2383
2386
|
if (debug3) {
|
|
2384
2387
|
console.error(`Port ${requestedPort} was requested for "${portKey}", but is already used by another server.`);
|