2025-12-01 22:28:51 +08:00
|
|
|
{
|
|
|
|
|
"$schema": "https://turbo.build/schema.json",
|
|
|
|
|
"tasks": {
|
|
|
|
|
"build": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": ["dist/**", "bin/**", "pkg/**"],
|
|
|
|
|
"env": ["NODE_ENV"]
|
|
|
|
|
},
|
|
|
|
|
"build:watch": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"persistent": true,
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"build:npm": {
|
|
|
|
|
"dependsOn": ["^build:npm", "build"],
|
|
|
|
|
"outputs": ["dist/**", "bin/**"]
|
|
|
|
|
},
|
|
|
|
|
"build:release": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": ["dist/**", "bin/**", "pkg/**"]
|
|
|
|
|
},
|
2025-12-03 22:15:22 +08:00
|
|
|
"copy-modules": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"outputs": ["packages/editor-app/dist/engine/**"],
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
2025-12-01 22:28:51 +08:00
|
|
|
"type-check": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
|
|
|
|
"lint": {
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
|
|
|
|
"lint:fix": {
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
|
|
|
|
"test": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
|
|
|
|
"test:ci": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"outputs": ["coverage/**"]
|
|
|
|
|
},
|
|
|
|
|
"test:coverage": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"outputs": ["coverage/**"]
|
|
|
|
|
},
|
|
|
|
|
"clean": {
|
|
|
|
|
"cache": false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|