Skip to content

Commit

Permalink
Skip Husky inside Docker building stage (#156)
Browse files Browse the repository at this point in the history
Skip Husky inside Docker building stage
  • Loading branch information
gruz0 authored Nov 19, 2024
1 parent bdeb28c commit edd1d40
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 @@ -13,7 +13,7 @@
"next-lint-fix": "next lint --fix",
"lint:prisma": "npx prisma validate",
"prettier": "npx prettier --check .",
"prepare": "npx husky",
"prepare": "if [ -d .git ]; then npx husky; fi",
"knip": "npx knip",
"lint": "npm run next-lint && npm run prettier && npm run knip",
"prisma:generate_client": "prisma generate",
Expand Down

0 comments on commit edd1d40

Please sign in to comment.