mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-24 11:03:17 -04:00
16 lines
509 B
JSON
16 lines
509 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"tasks": {
|
|
"build": { "dependsOn": ["setup"], "outputs": ["dist/**"] },
|
|
"develop": { "dependsOn": ["setup"], "cache": false, "persistent": true },
|
|
"lint": { "dependsOn": ["setup"] },
|
|
"setup": { "dependsOn": ["^build"] },
|
|
"test": { "dependsOn": ["setup"] },
|
|
"test-content": { "dependsOn": ["setup"] },
|
|
"type-check": { "dependsOn": ["setup"] },
|
|
"//#lint-root": {
|
|
"dependsOn": ["@freecodecamp/shared#build"]
|
|
}
|
|
}
|
|
}
|