* chore(deps-dev): upgrade turbo to latest * chore: cleanup * chore: update pkg json config * chore(workflows): upgrade pnpm to latest * chore: update pkg json config * chore: update pkg json config * chore: cleanup
34 lines
659 B
JSON
34 lines
659 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build", "types", "theme"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
|
|
"types": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"theme": {
|
|
"outputs": ["dist/**"]
|
|
},
|
|
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"docs": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
}
|
|
},
|
|
"globalEnv": ["VERCEL_ANALYTICS_ID", "ALGOLIA_API_KEY", "SERVER", "VUE_ROUTER_MODE", "VUE_ROUTER_BASE", "NODE_ENV"]
|
|
}
|