devex: prepr:web and app with proper caching (#4957)

* devex: prepr:web and app with proper caching

* fix: add tooling config to turbo global deps

* fix: exclude turbo + node modules for tooling-config

* feat: prepr:frontend

* fix: ci issue
This commit is contained in:
Calum H.
2025-12-24 21:39:59 +00:00
committed by GitHub
parent 67a6cd24cc
commit 3adee66899
4 changed files with 19 additions and 17 deletions

View File

@@ -1,6 +1,11 @@
{
"$schema": "./node_modules/turbo/schema.json",
"concurrency": "100%",
"globalDependencies": [
"packages/tooling-config/**",
"!packages/tooling-config/.turbo/**",
"!packages/tooling-config/node_modules/**"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
@@ -60,11 +65,13 @@
"NEXTEST_*"
]
},
"fix": {
"cache": false
},
"fix": {},
"fix:ancillary": {
"cache": false
},
"intl:extract": {},
"prepr": {
"dependsOn": ["^prepr", "fix", "intl:extract"]
}
}
}