From b1e6c8d820a5a7dc23330a4ac2eec63e77ea262b Mon Sep 17 00:00:00 2001 From: Aaron Casanova Date: Sun, 17 Nov 2024 14:52:43 -0800 Subject: [PATCH] chore(examples): fix `$TURBO_DEFAULT$` inputs --- examples/with-changesets/turbo.json | 2 +- examples/with-prisma/turbo.json | 2 +- examples/with-rollup/turbo.json | 2 +- examples/with-svelte/turbo.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/with-changesets/turbo.json b/examples/with-changesets/turbo.json index 11a217273c68d..68899f25f65fe 100644 --- a/examples/with-changesets/turbo.json +++ b/examples/with-changesets/turbo.json @@ -2,7 +2,7 @@ "$schema": "https://turbo.build/schema.json", "tasks": { "build": { - "inputs": ["$TURBO_DEFAULT", ".env*"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"], "dependsOn": ["^build"] }, diff --git a/examples/with-prisma/turbo.json b/examples/with-prisma/turbo.json index ba60851e99ef8..d1838a09fae5b 100644 --- a/examples/with-prisma/turbo.json +++ b/examples/with-prisma/turbo.json @@ -3,7 +3,7 @@ "tasks": { "build": { "dependsOn": ["^build"], - "inputs": ["$TURBO_DEFAULT", ".env*"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"] }, "db:migrate:deploy": {}, diff --git a/examples/with-rollup/turbo.json b/examples/with-rollup/turbo.json index a0547fd0d3246..e1da2539207a5 100644 --- a/examples/with-rollup/turbo.json +++ b/examples/with-rollup/turbo.json @@ -3,7 +3,7 @@ "tasks": { "build": { "dependsOn": ["^build"], - "inputs": ["$TURBO_DEFAULT", ".env*"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"] }, "lint": { diff --git a/examples/with-svelte/turbo.json b/examples/with-svelte/turbo.json index 5bbc59d0b5eae..ee8554760bf7d 100644 --- a/examples/with-svelte/turbo.json +++ b/examples/with-svelte/turbo.json @@ -3,7 +3,7 @@ "tasks": { "build": { "dependsOn": ["^build"], - "inputs": ["$TURBO_DEFAULT", ".env*"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": [".svelte-kit/**", ".vercel/**"] }, "lint": {},