-
Notifications
You must be signed in to change notification settings - Fork 0
Added prepush typechecking #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| npm run typecheck | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,8 @@ | |
| "postinstall": "patch-package", | ||
| "deploy:model": "tsx cli/deploy.ts model", | ||
| "deploy:public": "tsx cli/deploy.ts public static", | ||
| "deploy": "npm-run-all build deploy:*" | ||
| "deploy": "npm-run-all build deploy:*", | ||
| "prepare": "husky" | ||
| }, | ||
| "dependencies": { | ||
| "@csstools/normalize.css": "^12.1.1", | ||
|
|
@@ -24,6 +25,7 @@ | |
| "class-variance-authority": "^0.7.1", | ||
| "clsx": "^2.1.1", | ||
| "epicenter-libs": "^3.32.0", | ||
| "husky": "^9.1.7", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The References
|
||
| "i18next": "^25.6.0", | ||
| "jotai": "^2.15.0", | ||
| "lucide-react": "^0.548.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pre-push hook script is missing the necessary shebang and command to source husky's environment. Without these, the hook may not execute correctly or reliably across different environments. Please update the script to follow the standard husky v9 format.