admin-vben/turbo.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2024-05-19 13:20:42 +00:00
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"pnpm-lock.yaml",
"**/.env.*local",
"**/tsconfig*.json",
"internal/node-utils/*.json",
"internal/node-utils/src/**/*.ts",
"internal/tailwind-config/src/**/*.ts",
"internal/vite-config/*.json",
"internal/vite-config/src/**/*.ts",
"scripts/*/src/**/*.ts",
"scripts/*/src/**/*.json"
],
"globalEnv": ["NODE_ENV"],
2024-06-02 15:46:18 +00:00
"tasks": {
2024-05-19 13:20:42 +00:00
"build": {
"dependsOn": ["^build"],
"outputs": [
"dist/**",
"dist.zip",
".vitepress/dist.zip",
".vitepress/dist/**"
]
2024-05-19 13:20:42 +00:00
},
"preview": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:analyze": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"@vben/backend-mock#build": {
"dependsOn": ["^build"],
"outputs": [".nitro/**", ".output/**"]
},
"test:e2e": {},
2024-05-19 13:20:42 +00:00
"dev": {
2024-07-12 14:23:41 +00:00
"dependsOn": [],
"outputs": [],
"cache": false,
"persistent": true
},
2024-06-01 14:17:52 +00:00
"typecheck": {
2024-06-02 15:46:18 +00:00
"outputs": []
2024-06-01 14:17:52 +00:00
}
2024-05-19 13:20:42 +00:00
}
}