Rocket.Chat/turbo.json
Rodrigo Nascimento e54fd03984
chore(CI): improve workflow merging steps and parallelizing image build (#37352)
Co-authored-by: Guilherme Gazzo <guilherme@gazzo.xyz>
2025-11-05 10:20:47 -03:00

53 lines
932 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"build-preview": {
"dependsOn": ["^build"],
"outputs": ["storybook-static/**", ".storybook/**", "dist/**"]
},
".:build-preview-move": {
"dependsOn": ["^build-preview"],
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test-storybook": {
"dependsOn": ["build"],
"outputs": ["coverage/**"]
},
"testunit": {
"outputs": ["coverage/**"]
},
"lint": {
"outputs": []
},
"translation-check": {
"outputs": []
},
"typecheck": {
"outputs": []
},
"dev": {
"dependsOn": ["^dev"],
"cache": false
},
"dsv": {
"dependsOn": ["build"],
"cache": false
},
"ms": {
"dependsOn": ["^build"]
},
"@rocket.chat/meteor#build": {
"dependsOn": ["^build"],
"cache": false
},
"@rocket.chat/meteor#build:ci": {
"env": ["BABEL_ENV"],
"cache": false
}
}
}