chore: add dev script to package.json and update turbo build inputs

This commit is contained in:
Aman Varshney
2025-08-03 11:34:41 +05:30
parent 889c59abe3
commit f56a3b7338
3 changed files with 4 additions and 4 deletions

View File

@@ -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",

View File

@@ -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/*"
]
}
}

View File

@@ -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": {