We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I have 0.2.22 in my package-json, but the v0.2.22 tag doesn't exist yet:
npx auto-changelog --package --stdout --starting-version=v0.2.21
prints the log for .21 and .22. I want only .22
if you put -p --starting-version=v0.2.22: it throws
-p --starting-version=v0.2.22
TypeError: Invalid version. Must be a string. Got type "undefined".
I worked around with with some sed, but it's a pain to get the quoting right.
auto-changlog ... | sed -n "/\[v0.2.21\]/q;p"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I have 0.2.22 in my package-json, but the v0.2.22 tag doesn't exist yet:
prints the log for .21 and .22. I want only .22
if you put
-p --starting-version=v0.2.22
: it throwsI worked around with with some sed, but it's a pain to get the quoting right.
The text was updated successfully, but these errors were encountered: