From 00791641a451cd242542ad8451031be304e798e6 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Wed, 6 Nov 2024 09:28:19 +0530 Subject: [PATCH 1/2] [web] Remove unused yarn invocations These are in infra. --- web/package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/package.json b/web/package.json index 2dac8360a7..d885d014d9 100644 --- a/web/package.json +++ b/web/package.json @@ -13,7 +13,6 @@ "build:cast": "yarn workspace cast next build", "build:payments": "yarn workspace payments build", "build:photos": "yarn workspace photos next build", - "build:staff": "yarn workspace staff build", "dev": "yarn dev:photos", "dev:accounts": "yarn workspace accounts next dev -p 3001", "dev:albums": "yarn workspace photos next dev -p 3002", @@ -21,7 +20,6 @@ "dev:cast": "yarn workspace cast next dev -p 3001", "dev:payments": "yarn workspace payments dev", "dev:photos": "yarn workspace photos next dev -p 3000", - "dev:staff": "yarn workspace staff dev", "lint": "concurrently --names 'prettier,eslint,tsc' \"yarn prettier --check --log-level warn .\" \"yarn workspaces run eslint --report-unused-disable-directives .\" \"yarn workspaces run tsc\"", "lint-fix": "concurrently --names 'prettier,eslint,tsc' \"yarn prettier --write --log-level warn .\" \"yarn workspaces run eslint --report-unused-disable-directives --fix .\" \"yarn workspaces run tsc\"", "preview": "yarn preview:photos", @@ -30,7 +28,6 @@ "preview:cast": "yarn build:cast && python3 -m http.server -d apps/accounts/out 3001", "preview:payments": "yarn workspace payments preview", "preview:photos": "yarn build:photos && python3 -m http.server -d apps/photos/out 3000", - "preview:staff": "yarn workspace staff preview" }, "resolutions": { "@emotion/cache": "11.13.1", From 37aa2af39d3e8eeded2f401c580ae054ec4827e6 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Wed, 6 Nov 2024 09:31:52 +0530 Subject: [PATCH 2/2] Fix --- web/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/package.json b/web/package.json index d885d014d9..0641a36e44 100644 --- a/web/package.json +++ b/web/package.json @@ -27,7 +27,7 @@ "preview:auth": "yarn build:auth && python3 -m http.server -d apps/auth/out 3000", "preview:cast": "yarn build:cast && python3 -m http.server -d apps/accounts/out 3001", "preview:payments": "yarn workspace payments preview", - "preview:photos": "yarn build:photos && python3 -m http.server -d apps/photos/out 3000", + "preview:photos": "yarn build:photos && python3 -m http.server -d apps/photos/out 3000" }, "resolutions": { "@emotion/cache": "11.13.1",