Skip to content

Commit

Permalink
Typecheck needs to build first
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Dec 28, 2024
1 parent 50a9011 commit 1754cf2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
"build": "remix vite:build",
"prepreview": "remix vite:build",
"preview": "wrangler pages dev ./build/client",
"predeploy": "remix vite:build",
"predeploy": "npm run build",
"deploy": "wrangler pages deploy ./build/client",
"prelint": "remix vite:build",
"prelint": "npm run build",
"lint": "eslint --ignore-path ../../.gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"test": "TZ=EST vitest run",
"test-ci": "TZ=EST vitest run --coverage",
"pretypecheck": "npm run build",
"typecheck": "tsc",
"prepare": "husky",
"types:gen": "wrangler types",
Expand Down

0 comments on commit 1754cf2

Please sign in to comment.