0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Updated default dev port for comments script

refs https://github.com/TryGhost/Team/issues/1664
This commit is contained in:
Rishabh 2022-07-04 15:19:49 +02:00
parent cc4eda6478
commit 4e17ab2368
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 = 5368, basic, b} = minimist(process.argv.slice(2));
const {v, verbose, port = 5369, 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 = 5368} = minimist(process.argv.slice(2));
const {v, verbose, port = 5369} = minimist(process.argv.slice(2));
const showVerbose = !!(v || verbose);
function clearConsole({withHistory = true} = {}) {