From f56a3b73383e3d7e4e997d31fbc6a0d7f94ff5c6 Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Sun, 3 Aug 2025 11:34:41 +0530 Subject: [PATCH] chore: add dev script to package.json and update turbo build inputs --- apps/web/src/app/layout.tsx | 2 +- package.json | 3 ++- turbo.json | 3 +-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index d049e03..07404e8 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -20,7 +20,7 @@ const geistMono = Geist_Mono({ }); const ogImage = - "https://api.screenshothis.com/v1/screenshots/take?api_key=ss_live_NQJgRXqHcKPwnoMTuQmgiwLIGbVfihjpMyQhgsaMyNBHTyesvrxpYNXmdgcnxipc&url=https%3A%2F%2Fbetter-t-stack.dev%2F&width=1200&height=630&block_ads=true&block_cookie_banners=true&block_trackers=true&device_scale_factor=0.70&prefers_color_scheme=dark&is_cached=true&cache_key=bts"; + "https://api.screenshothis.com/v1/screenshots/take?api_key=ss_live_NQJgRXqHcKPwnoMTuQmgiwLIGbVfihjpMyQhgsaMyNBHTyesvrxpYNXmdgcnxipc&url=https%3A%2F%2Fbetter-t-stack.dev%2F&width=1200&height=630&block_ads=true&block_cookie_banners=true&block_trackers=true&device_scale_factor=0.65&prefers_color_scheme=dark&is_cached=true&cache_key=cbts"; export const metadata: Metadata = { title: "Better-T Stack", diff --git a/package.json b/package.json index b25236e..c960e89 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "private": true, "scripts": { "build": "turbo build", + "dev": "turbo dev", "dev:cli": "turbo run dev --filter=create-better-t-stack", "cli": "cd apps/cli && node dist/index.js", "dev:web": "turbo run dev --filter=web", @@ -37,4 +38,4 @@ "apps/*", "packages/*" ] -} \ No newline at end of file +} diff --git a/turbo.json b/turbo.json index 4d06cfa..c305262 100644 --- a/turbo.json +++ b/turbo.json @@ -4,8 +4,7 @@ "tasks": { "build": { "dependsOn": ["^build"], - "inputs": ["$TURBO_DEFAULT$", ".env*"], - "env": ["PROD", "CONVEX_DEPLOY_KEY", "NEXT_PUBLIC_CONVEX_URL", "NEXT_PUBLIC_POSTHOG_KEY", "NEXT_PUBLIC_POSTHOG_HOST"], + "inputs": ["$TURBO_DEFAULT$"], "outputs": [".next/**", "!.next/cache/**"] }, "lint": {