feat/ replace build with lint and typecheck scripts

This commit is contained in:
Leon van Zyl
2025-08-20 10:31:45 +02:00
parent ebdb7c9597
commit cb73d6b2b9
2 changed files with 3 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
- Always run the db generate, migrate and build commands to check for errors after completing your changes.
- Always run the db generate, migrate and build comands to check for errors after completing your changes. 
- Always run the LINT and TYPESCHECK scripts after completing your changes. This is to check for any issues.
- NEVER start the dev server yourself. If you need something from the terminal, ask the user to provide it to you.

View File

@@ -7,6 +7,7 @@
"build": "pnpm run db:migrate && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",