2023-02-13 13:46:56 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://turbo.build/schema.json",
|
2024-06-05 09:06:00 +02:00
|
|
|
"globalDependencies": [".env"],
|
2024-06-12 08:27:30 +02:00
|
|
|
"globalEnv": [
|
|
|
|
|
"NODE_ENV",
|
2026-02-10 08:36:04 +01:00
|
|
|
"ZAMMAD_URL",
|
2026-02-15 10:29:52 +01:00
|
|
|
"BRIDGE_SIGNAL_URL"
|
2024-06-12 08:27:30 +02:00
|
|
|
],
|
2024-06-05 09:06:00 +02:00
|
|
|
"tasks": {
|
2023-02-13 20:04:35 +00:00
|
|
|
"dev": {
|
2023-06-07 08:14:29 +00:00
|
|
|
"dependsOn": ["^build"],
|
2023-02-13 20:04:35 +00:00
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
|
|
|
|
},
|
2023-02-13 13:46:56 +00:00
|
|
|
"build": {
|
2023-05-25 12:37:14 +00:00
|
|
|
"dependsOn": ["^build"],
|
2025-11-21 14:55:28 +01:00
|
|
|
"outputs": [
|
|
|
|
|
"build/**",
|
|
|
|
|
"dist/**",
|
2026-02-15 19:34:12 +01:00
|
|
|
"../../docker/zammad/addons/**"
|
2025-11-21 14:55:28 +01:00
|
|
|
]
|
2026-02-15 10:29:52 +01:00
|
|
|
},
|
|
|
|
|
"lint": {
|
|
|
|
|
"dependsOn": ["^build"]
|
|
|
|
|
},
|
|
|
|
|
"format": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"format:check": {}
|
2023-02-13 13:46:56 +00:00
|
|
|
}
|
2023-05-25 12:37:14 +00:00
|
|
|
}
|