50 lines
911 B
JSON
50 lines
911 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"tasks": {
|
|
"//#build:wasm": {
|
|
"outputs": ["rust/wasm/pkg/**"]
|
|
},
|
|
"build": {
|
|
"dependsOn": ["//#build:wasm", "^build"],
|
|
"outputs": [".next/**", "!.next/cache/**"],
|
|
"env": [
|
|
"NODE_ENV",
|
|
"NEXT_PUBLIC_SITE_URL",
|
|
"NEXT_PUBLIC_MARBLE_API_URL",
|
|
"DATABASE_URL",
|
|
"BETTER_AUTH_SECRET",
|
|
"UPSTASH_REDIS_REST_URL",
|
|
"UPSTASH_REDIS_REST_TOKEN",
|
|
"MARBLE_WORKSPACE_KEY",
|
|
"FREESOUND_CLIENT_ID",
|
|
"FREESOUND_API_KEY"
|
|
]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"preview": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"deploy": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"],
|
|
"cache": false
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": ["^lint:fix"],
|
|
"cache": false
|
|
},
|
|
"format": {
|
|
"dependsOn": ["^format"]
|
|
}
|
|
}
|
|
}
|