From 615dbebc7a054a799e129387f20f4d263a1d52b9 Mon Sep 17 00:00:00 2001 From: Claas Augner Date: Mon, 8 Sep 2025 17:02:21 +0200 Subject: [PATCH 1/2] fix(scripts/start): use local playground --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 821945cd9fd7e93..893325df16aee6d 100644 --- a/package.json +++ b/package.json @@ -38,8 +38,8 @@ "lint:typos-group-by-file": "cspell --no-progress --gitignore --quiet --reporter cspell-group-by-file-reporter --config .vscode/cspell.json \"**/*.md\"", "lint:typos-words-only": "cspell --no-progress --gitignore --words-only --unique --config .vscode/cspell.json \"**/*.md\"", "lint:yml": "prettier -c \"**/*.yml\"", - "start": "yarn -s info:fred && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files NODE_ENV=production FRED_PORT=5042 FRED_WRITER_MODE=true fred-server", - "start:fred": "yarn -s info:deprecated && yarn -s info:fred && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files NODE_ENV=production FRED_WRITER_MODE=true fred-server", + "start": "yarn -s info:fred && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files NODE_ENV=production FRED_PLAYGROUND_LOCAL=true FRED_PORT=5042 FRED_WRITER_MODE=true fred-server", + "start:fred": "yarn -s info:deprecated && yarn -s info:fred && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files NODE_ENV=production FRED_PLAYGROUND_LOCAL=true FRED_WRITER_MODE=true fred-server", "start:legacy": "yarn -s info:deprecated && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files REACT_APP_DISABLE_AUTH=true BUILD_OUT_ROOT=build rari-server", "up-to-date-check": "node scripts/up-to-date-check.js", "jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest", From a1803e22b968b09db94f3b486ae952d0cba40846 Mon Sep 17 00:00:00 2001 From: Claas Augner <495429+caugner@users.noreply.github.com> Date: Tue, 9 Sep 2025 09:36:45 +0200 Subject: [PATCH 2/2] chore(scripts/start): set playground port --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 893325df16aee6d..9eff86f181dcf85 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "lint:typos-group-by-file": "cspell --no-progress --gitignore --quiet --reporter cspell-group-by-file-reporter --config .vscode/cspell.json \"**/*.md\"", "lint:typos-words-only": "cspell --no-progress --gitignore --words-only --unique --config .vscode/cspell.json \"**/*.md\"", "lint:yml": "prettier -c \"**/*.yml\"", - "start": "yarn -s info:fred && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files NODE_ENV=production FRED_PLAYGROUND_LOCAL=true FRED_PORT=5042 FRED_WRITER_MODE=true fred-server", + "start": "yarn -s info:fred && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files NODE_ENV=production FRED_PLAYGROUND_LOCAL=true FRED_PLAYGROUND_PORT=5043 FRED_PORT=5042 FRED_WRITER_MODE=true fred-server", "start:fred": "yarn -s info:deprecated && yarn -s info:fred && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files NODE_ENV=production FRED_PLAYGROUND_LOCAL=true FRED_WRITER_MODE=true fred-server", "start:legacy": "yarn -s info:deprecated && yarn up-to-date-check && env-cmd --silent cross-env CONTENT_ROOT=files REACT_APP_DISABLE_AUTH=true BUILD_OUT_ROOT=build rari-server", "up-to-date-check": "node scripts/up-to-date-check.js",