Files
ruoyi-plus-vben5/turbo.json
dap e4d882b4bc chore: 移除 backend-mock 应用及相关配置
移除不再使用的 backend-mock 应用,包括其源代码、配置文件、依赖项以及相关的构建任务。
同时从工作区配置和 TurboRepo 构建管道中删除对该应用的引用。
2026-01-26 19:02:23 +08:00

56 lines
1.2 KiB
JSON

{
"$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"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
"dist/**",
"dist.zip",
".vitepress/dist.zip",
".vitepress/dist/**"
]
},
"@vben/web-antd#build:prod": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"@vben/web-antd#build:test": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"preview": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:analyze": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test:e2e": {},
"dev": {
"dependsOn": [],
"outputs": [],
"cache": false,
"persistent": true
},
"typecheck": {
"outputs": []
}
}
}