-
Notifications
You must be signed in to change notification settings - Fork 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
[Fix] New line between breaking changes and issues #14
Conversation
BREAKING CHANGE: At least Node.js version 12 is required
Codecov Report
@@ Coverage Diff @@
## main #14 +/- ##
==========================================
+ Coverage 79.47% 89.37% +9.90%
==========================================
Files 12 12
Lines 380 386 +6
Branches 88 87 -1
==========================================
+ Hits 302 345 +43
+ Misses 77 40 -37
Partials 1 1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
One of the main causes for issues like this is the use of A better idea, for future refactors, in my opinion, will be:
|
Overall it looks good to go. I added a question and note to the review. The coverage has decreased with this PR, please add tests for the additional functions to at least bring the coverage to the same percentage. |
@martinmcwhorter I added more tests for |
.husky/prepare-commit-msg
Outdated
@@ -1,4 +1,4 @@ | |||
#!/bin/sh | |||
. "$(dirname "$0")/_/husky.sh" | |||
|
|||
exec < /dev/tty && git cz --hook || true | |||
exec </dev/tty && npx cz --hook || true |
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.
Why is this changed from git to npx?
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.
I had an error on my local machine regarding the cz
not being a git
command. I will revert if it is only my problem.
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.
Hmm.. not sure. Maybe cz is no longer a git plugin. Lemme look into it.
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.
I am receiving this error:
git: 'cz' is not a git command. See 'git --help'.
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.
Reverted back to using git
(b4c8540).
This reverts commit 3724f81.
@martinmcwhorter also we need to merge #13 as it has dependency upgrades which caused the version bump to 1.2.0 which is itself was the cause of this merge request becoming 1.2.1. |
Hey @martinmcwhorter!
This pull request is based on #13 with upgraded dependencies.
Fixes #12.