mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-09-11 23:09:22 +02:00
perf!: monorepo setup + fully static + webp images
BREAKING CHANGE: minimum supported Node.js >= 22.0.0 and pnpm >= 9.5.0
This commit is contained in:
35
turbo.json
Normal file
35
turbo.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"ui": "tui",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
||||
"env": ["IS_STANDALONE"],
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": [
|
||||
"build/**",
|
||||
"storybook-static/**",
|
||||
".next/**",
|
||||
"!.next/cache/**"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["^test"],
|
||||
"outputs": ["coverage/**"]
|
||||
},
|
||||
"lint:eslint": {
|
||||
"dependsOn": ["^lint:eslint"]
|
||||
},
|
||||
"lint:typescript": {
|
||||
"dependsOn": ["^lint:typescript"]
|
||||
},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
"start": {
|
||||
"dependsOn": ["build"],
|
||||
"persistent": true
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user