wikipedia-game-solver/turbo.json
Théo LUDWIG 3ae6d2fac3
Some checks failed
Chromatic / chromatic (push) Failing after 42s
CI / ci (push) Successful in 2m44s
CI / commitlint (push) Successful in 14s
chore: initial commit
2024-07-24 12:35:33 +02:00

35 lines
687 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"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
}
}
}