You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 5, 2018. It is now read-only.
I started using this library for my project. While all the commits appear as output, they are not being grouped by type, which is meant to be the default for the writer?
I am running this as: node changelog.js
var conventionalChangelogCore = require('conventional-changelog-core');
conventionalChangelogCore({
transform : function(commit, cb) {
if(/^FIX/.test(commit.header)) {
commit.type = 'bug';
}
if(/^NEW|FEATURE/.test(commit.header)) {
commit.type = 'feat';
}
if(/^bump version --skip-ci/.test(commit.header)) {
commit = null;
}
cb(null, commit);
},
})
.pipe(process.stdout); // or any writable stream
The text was updated successfully, but these errors were encountered:
We're closing this issue out as this repository has been merged into our conventional-changelog mono-repository.
If you would like to see this change incorporated into conventional-changelog please consider re-opening the issue against the conventional-changelog mono-repository.
Hi, great library guys.
I started using this library for my project. While all the commits appear as output, they are not being grouped by type, which is meant to be the default for the writer?
I am running this as:
node changelog.js
The text was updated successfully, but these errors were encountered: