test/turbo.json

34 lines
839 B
JSON
Raw Permalink Normal View History

2024-05-07 16:24:43 +00:00
{
"$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": {
2024-05-09 22:29:02 +00:00
"dependsOn": ["^dev"],
2024-05-07 16:24:43 +00:00
"cache": false,
"persistent": true
},
"@3rapp/api#dev": {
"dependsOn": ["^build"]
},
"@3rapp/admin#dev": {
2024-05-09 22:29:02 +00:00
"dependsOn": ["@3rapp/common#build"]
2024-05-08 13:06:43 +00:00
},
"@3rapp/api#db": {
"cache": false,
"persistent": true
2024-05-07 16:24:43 +00:00
}
}
}