Add trustedDependencies for Supabase when dbSetup is supabase

This commit is contained in:
Aman Varshney
2025-06-09 03:13:07 +05:30
parent 6af9d2a8ee
commit 737690ce65
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"create-better-t-stack": patch
---
Add trustedDependencies for Supabase when dbSetup is supabase

View File

@@ -11,6 +11,11 @@
"next": "15.3.0",
"dotenv": "^16.5.0"
},
{{#if (eq dbSetup 'supabase')}}
"trustedDependencies": [
"supabase"
],
{{/if}}
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",

View File

@@ -16,6 +16,11 @@
"dotenv": "^16.4.7",
"zod": "^3.25.16"
},
{{#if (eq dbSetup 'supabase')}}
"trustedDependencies": [
"supabase"
],
{{/if}}
"devDependencies": {
"tsc-alias": "^1.8.11",
"typescript": "^5.8.2"