1. 将turbo.json中的pipeline重命名为tasks 2. 修复Vue模板中小于号转义问题,清理冗余代码与样式 3. 更新README文档,补充后端启动步骤,移除旧贡献指南 4. 更新前端包的rollup依赖版本与包名
24 lines
417 B
JSON
24 lines
417 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|