Initial commit
This commit is contained in:
47
turbo.json
Normal file
47
turbo.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"ui": "tui",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"dependsOn": ["^build", "^db:generate"],
|
||||
"outputs": [".next/**", "!.next/cache/**", "dist/**", "generated/**"]
|
||||
},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
"lint": {
|
||||
"dependsOn": ["^lint"],
|
||||
"outputs": []
|
||||
},
|
||||
"lint:fix": {
|
||||
"cache": false
|
||||
},
|
||||
"typecheck": {
|
||||
"dependsOn": ["^typecheck"],
|
||||
"outputs": []
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["^db:generate"],
|
||||
"outputs": ["coverage/**"],
|
||||
"env": ["NODE_ENV", "DATABASE_URL", "BETTER_AUTH_SECRET"]
|
||||
},
|
||||
"test:e2e": {
|
||||
"dependsOn": ["^build"],
|
||||
"cache": false,
|
||||
"env": ["NODE_ENV", "PLAYWRIGHT_BASE_URL"]
|
||||
},
|
||||
"storybook": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
"storybook:build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["storybook-static/**"]
|
||||
},
|
||||
"db:generate": {
|
||||
"cache": false,
|
||||
"outputs": []
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user