From 2d41b996c16bc8bdeceb2a009585717afacdce68 Mon Sep 17 00:00:00 2001 From: Kenton Duprey Date: Sun, 21 Jul 2024 18:13:46 -0400 Subject: [PATCH] chore: Add new environment variables to turbo.json The turbo.json file is updated to include the new environment variables "ADMIN_USER_ID", "JWT_SECRET", and "SANITY_API_READ_TOKEN" in the globalDependencies array. This change is made to ensure that these variables are treated as global dependencies for the project. --- turbo.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index ef75ad5c..90016fea 100644 --- a/turbo.json +++ b/turbo.json @@ -15,7 +15,10 @@ "NEXT_RUNTIME", "NEXT_PUBLIC_SANITY_DATASET", "DATABASE_URL", - "DIRECT_URL" + "DIRECT_URL", + "ADMIN_USER_ID", + "JWT_SECRET", + "SANITY_API_READ_TOKEN" ], "globalDependencies": [".env"], "tasks": {