mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-31 01:30:34 +00:00
✨ feat: initial prototype
This commit is contained in:
44
turbo.json
44
turbo.json
@@ -1,19 +1,29 @@
|
||||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
||||
},
|
||||
"typecheck": {
|
||||
"dependsOn": ["^typecheck"]
|
||||
},
|
||||
"dev": {
|
||||
"persistent": true,
|
||||
"cache": false,
|
||||
"env": ["DATABASE_URL"]
|
||||
}
|
||||
},
|
||||
"ui": "tui",
|
||||
"globalDependencies": ["**/.env"]
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"tasks": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
|
||||
"outputLogs": "new-only"
|
||||
},
|
||||
"typecheck": {
|
||||
"dependsOn": ["^typecheck"],
|
||||
"outputLogs": "errors-only"
|
||||
},
|
||||
"dev": {
|
||||
"persistent": true,
|
||||
"cache": false,
|
||||
"env": ["DATABASE_URL"],
|
||||
"outputLogs": "new-only"
|
||||
},
|
||||
"lint": {
|
||||
"outputLogs": "errors-only"
|
||||
},
|
||||
"format": {
|
||||
"outputLogs": "errors-only"
|
||||
}
|
||||
},
|
||||
"ui": "tui",
|
||||
"globalDependencies": ["**/.env"],
|
||||
"globalEnv": ["NODE_ENV"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user