link-stack/turbo.json

39 lines
827 B
JSON
Raw Normal View History

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",
"DATABASE_URL",
"DATABASE_HOST",
"DATABASE_NAME",
"DATABASE_USER",
"DATABASE_PASSWORD",
"DATABASE_PORT",
"BRIDGE_FRONTEND_URL"
],
2024-06-05 09:06:00 +02:00
"tasks": {
2023-02-13 20:04:35 +00:00
"dev": {
"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-10-15 17:09:56 +02:00
"outputs": [
".next/**",
"!.next/cache/**",
"build/**",
"dist/**",
"docker/zammad/addons/**"
]
2023-02-13 13:46:56 +00:00
},
"test": {
2023-05-25 12:37:14 +00:00
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-03-13 16:40:04 +00:00
},
"lint": {
2023-05-25 12:37:14 +00:00
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
2023-02-13 13:46:56 +00:00
}
}
2023-05-25 12:37:14 +00:00
}