monorepo/turbo.json

23 lines
474 B
JSON

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