Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit $1
npx --no-install commitlint --edit "$1"
5 changes: 1 addition & 4 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install oxfmt --check "**/*.{ts,tsx,md}"
npx --no-install oxfmt --check "**/*.{ts,tsx,md}"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"lint": "oxlint packages/*/src targets/*/src docs/app docs/scripts demo/src",
"package": "turbo run pack",
"postinstall": "remix setup node",
"prepare": "husky install",
"prepare": "husky",
"test": "pnpm test:ts && pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run --project unit",
"test:cov": "vitest run --project unit --coverage",
Expand Down
Loading