refactor: bundle shared so each consumer can require/import without hassle (#64167)

This commit is contained in:
Oliver Eyton-Williams
2026-01-19 10:45:40 +01:00
committed by GitHub
parent ddfd598eb4
commit f03ad05e84
190 changed files with 1059 additions and 437 deletions
+2 -4
View File
@@ -1,9 +1,7 @@
{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"lint": {
"dependsOn": ["@freecodecamp/shared#compile"]
},
"lint": { "dependsOn": ["compile"] },
"@freecodecamp/client#lint": {
"dependsOn": [
"@freecodecamp/curriculum#compile",
@@ -27,7 +25,7 @@
"@freecodecamp/curriculum#build"
]
},
"compile": {},
"compile": { "dependsOn": ["^compile"] },
"create:trending": { "cache": false },
"create:env": { "dependsOn": ["@freecodecamp/curriculum#compile"] },
"build": { "dependsOn": ["compile"] },