Skip to content

Commit

Permalink
fix: removed linting step from build script in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
BramSuurdje committed Dec 17, 2024
1 parent 5fe0b08 commit 97e3e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "bun run lint:fix && prisma generate && next build",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
Expand Down

0 comments on commit 97e3e09

Please sign in to comment.