From fba37af181aac52a1e9dd92b66501e09fc55a9c2 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com> Date: Tue, 10 Mar 2026 11:13:14 +0530 Subject: [PATCH] revert: remove unnecessary tsc call (#66322) --- curriculum/package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/curriculum/package.json b/curriculum/package.json index 4212d60e011..472c086f615 100644 --- a/curriculum/package.json +++ b/curriculum/package.json @@ -27,7 +27,7 @@ "author": "freeCodeCamp ", "scripts": { "audit-challenges": "pnpm turbo setup && tsx ./src/challenge-auditor/index.ts", - "build": "node ./dist/generate/build-curriculum", + "build": "tsc && tsx ./src/generate/build-curriculum", "type-check": "tsc --noEmit", "create-empty-steps": "tsx --tsconfig ../tools/challenge-helper-scripts/tsconfig.json ../tools/challenge-helper-scripts/create-empty-steps", "create-next-challenge": "tsx --tsconfig ../tools/challenge-helper-scripts/tsconfig.json ../tools/challenge-helper-scripts/create-next-challenge", @@ -46,7 +46,6 @@ "reorder-tasks": "tsx --tsconfig ../tools/challenge-helper-scripts/tsconfig.json ../tools/challenge-helper-scripts/reorder-tasks", "update-challenge-order": "tsx --tsconfig ../tools/challenge-helper-scripts/tsconfig.json ../tools/challenge-helper-scripts/update-challenge-order", "update-step-titles": "tsx --tsconfig ../tools/challenge-helper-scripts/tsconfig.json ../tools/challenge-helper-scripts/update-step-titles", - "setup": "tsc", "test": "NODE_OPTIONS='--max-old-space-size=7168' pnpm test-gen && vitest run", "test:watch": "pnpm test-gen && vitest", "test-gen": "tsx ./src/test/utils/generate-block-tests.ts",