aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-docker/turbo.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-docker/turbo.json')
-rw-r--r--examples/with-docker/turbo.json26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/with-docker/turbo.json b/examples/with-docker/turbo.json
deleted file mode 100644
index 7a59fef..0000000
--- a/examples/with-docker/turbo.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "$schema": "https://turbo.build/schema.json",
- "globalDependencies": ["**/.env.*local"],
- "globalEnv": ["PORT"],
- "pipeline": {
- "build": {
- "outputs": ["dist/**", ".next/**", "!.next/cache/**", "public/dist/**"],
- "dependsOn": ["^build"],
- "env": ["NEXT_PUBLIC_API_HOST"]
- },
- "test": {
- "outputs": ["coverage/**"],
- "dependsOn": []
- },
- "lint": {
- "dependsOn": ["^build"]
- },
- "dev": {
- "cache": false,
- "persistent": true
- },
- "clean": {
- "cache": false
- }
- }
-}