Updated default dev port to avoid conflict

refs https://github.com/TryGhost/Team/issues/1665

- updates default dev mode port to 2370 to avoid conflict with other local scripts
This commit is contained in:
Rishabh 2022-07-04 15:44:29 +02:00
parent e2294ace22
commit 7cd9a81c5a
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ let spinner;
let stdOutChunks = [];
let stdErrChunks = [];
const {v, verbose, port = 5369, basic, b} = minimist(process.argv.slice(2));
const {v, verbose, port = 5370, basic, b} = minimist(process.argv.slice(2));
const showVerbose = !!(v || verbose);
const showBasic = !!(b || basic);

View File

@ -13,7 +13,7 @@ let stdOutChunks = [];
let stdErrChunks = [];
let startYarnOutput = false;
const {v, verbose, port = 5369} = minimist(process.argv.slice(2));
const {v, verbose, port = 5370} = minimist(process.argv.slice(2));
const showVerbose = !!(v || verbose);
function clearConsole({withHistory = true} = {}) {