@oussema_mili/test-pkg-123 1.1.48 → 1.1.49
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/containerManager.js +1 -1
- package/package.json +1 -1
package/containerManager.js
CHANGED
|
@@ -250,7 +250,7 @@ class ContainerManager {
|
|
|
250
250
|
if (APP_PORT === WS_PORT || !(await isPortAvailable(APP_PORT))) {
|
|
251
251
|
try {
|
|
252
252
|
const newPort = await findAvailableContainerPort(DEFAULT_CONTAINER_PORT, 100, [WS_PORT]);
|
|
253
|
-
console.log(chalk.
|
|
253
|
+
console.log(chalk.yellow(`Port ${APP_PORT} is in use, using port ${newPort} for DevApp`));
|
|
254
254
|
APP_PORT = newPort;
|
|
255
255
|
} catch (err) {
|
|
256
256
|
throw new Error(`Failed to resolve DevApp port conflict: ${err.message}`);
|