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
The dest option is not working anymore and it always defaults to 'CHANGELOG.md'. As a workaround, you can use the file option which does the same.
dest
file
This bug is caused by changelog.js:
var options = this.options({ file: 'CHANGELOG.md', [...] }); options.file = options.file || options.dest;
You can see how options.file is always truthy and options.dest will therefore be ignored.
options.file
options.dest
The text was updated successfully, but these errors were encountered:
PR welcome 👍
Sorry, something went wrong.
test(): add basic test case
7af255d
ping @drichard
1dbf0a8
No branches or pull requests
The
dest
option is not working anymore and it always defaults to 'CHANGELOG.md'.As a workaround, you can use the
file
option which does the same.This bug is caused by changelog.js:
You can see how
options.file
is always truthy andoptions.dest
will therefore be ignored.The text was updated successfully, but these errors were encountered: