mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-07 01:02:55 +08:00
1cb67b38e0
* chore: update actions workflow yamls * chore: update turbo.json * fix: split admin preview image workflows * fix: allow home chat file uploads
42 lines
828 B
JSON
42 lines
828 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev:pro": {
|
|
"with": ["@fastgpt/admin#dev"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev:pro": {
|
|
"with": ["@fastgpt/admin#dev"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "dist/**", "worker/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**", "test-results.json"]
|
|
},
|
|
"test:integration": {
|
|
"cache": false,
|
|
"outputs": ["test-results.integration.json"]
|
|
},
|
|
"typecheck": {
|
|
"outputs": []
|
|
},
|
|
"build:workers": {
|
|
"cache": false,
|
|
"outputs": ["worker/**"]
|
|
}
|
|
}
|
|
}
|