mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
53 lines
932 B
JSON
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
|
|
}
|
|
}
|
|
}
|