test/turbo.json
2024-05-10 06:29:02 +08:00

34 lines
839 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["NODE_ENV", "REACT_APP_ENV"],
"pipeline": {
"cli": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"dev": {
"dependsOn": ["^dev"],
"cache": false,
"persistent": true
},
"@3rapp/api#dev": {
"dependsOn": ["^build"]
},
"@3rapp/admin#dev": {
"dependsOn": ["@3rapp/common#build"]
},
"@3rapp/api#db": {
"cache": false,
"persistent": true
}
}
}