From 22aac303c745c0f5eda58d4f8184b43e995633ed Mon Sep 17 00:00:00 2001 From: gnezim Date: Sun, 5 Apr 2026 18:56:48 +0300 Subject: [PATCH] fix: remove non-existent validate script reference from root package.json The validate script will be added in Task 15 when the full-validation.sh script is created. For now, remove it to prevent npm script execution errors. --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 90f998967..ffe7d912b 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,7 @@ "scripts": { "dev:angular": "cd apps/angular && npm start", "dev:react": "cd apps/react && npm run dev", - "dev:both": "concurrently \"npm run dev:angular\" \"npm run dev:react\"", - "validate": "cd e2e && bash ../scripts/full-validation.sh" + "dev:both": "concurrently \"npm run dev:angular\" \"npm run dev:react\"" }, "devDependencies": { "concurrently": "^8.2.0"