From 13600c9bb94370a83af0cc4b4bcd0932b23d3152 Mon Sep 17 00:00:00 2001 From: Josh Miller Date: Tue, 27 Feb 2024 17:10:09 +0000 Subject: [PATCH] export port range --- electron/constants.js | 1 + 1 file changed, 1 insertion(+) diff --git a/electron/constants.js b/electron/constants.js index 51a64260a..f1afe29bd 100644 --- a/electron/constants.js +++ b/electron/constants.js @@ -1,5 +1,6 @@ const PORT_RANGE = { startPort: 39152, endPort: 65535 }; const ERROR_ADDRESS_IN_USE = 'EADDRINUSE'; module.exports = { + PORT_RANGE, ERROR_ADDRESS_IN_USE, };