Adding prisma generate to scripts in package.json

This commit is contained in:
radishsoups 2026-04-27 19:24:54 -04:00
parent 09a70a87bd
commit d331d8ed46

View file

@ -8,7 +8,8 @@
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint", "lint": "next lint",
"postinstall": "prisma generate" "postinstall": "prisma generate",
"prisma": "prisma generate"
}, },
"dependencies": { "dependencies": {
"@2toad/profanity": "^3.3.0", "@2toad/profanity": "^3.3.0",
@ -50,4 +51,4 @@
".": "./src/types.d.ts" ".": "./src/types.d.ts"
}, },
"types": "./src/types.d.ts" "types": "./src/types.d.ts"
} }