mindpm 1.2.22 → 1.2.23
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1181,13 +1181,13 @@ function startHttpServer(port) {
|
|
|
1181
1181
|
}
|
|
1182
1182
|
});
|
|
1183
1183
|
server2.on("error", (err) => {
|
|
1184
|
-
_httpPort = null;
|
|
1185
1184
|
if (err.code === "EADDRINUSE") {
|
|
1186
1185
|
process.stderr.write(
|
|
1187
|
-
`[mindpm]
|
|
1186
|
+
`[mindpm] Port ${port} already in use. Kanban UI served by existing process at http://localhost:${port}
|
|
1188
1187
|
`
|
|
1189
1188
|
);
|
|
1190
1189
|
} else {
|
|
1190
|
+
_httpPort = null;
|
|
1191
1191
|
process.stderr.write(`[mindpm] HTTP server error: ${err.message}
|
|
1192
1192
|
`);
|
|
1193
1193
|
}
|