@epic-web/workshop-app 5.18.1 → 5.19.0
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/build/server/index.js
CHANGED
|
@@ -7328,7 +7328,7 @@ async function getAppRunningState(a) {
|
|
|
7328
7328
|
if (a.dev.type !== "script") {
|
|
7329
7329
|
return { isRunning: false, portIsAvailable: null };
|
|
7330
7330
|
}
|
|
7331
|
-
const isRunning = isAppRunning(a);
|
|
7331
|
+
const isRunning = await isAppRunning(a);
|
|
7332
7332
|
const portIsAvailable = isRunning ? null : await isPortAvailable(a.dev.portNumber);
|
|
7333
7333
|
return { isRunning, portIsAvailable };
|
|
7334
7334
|
}
|