Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 721 Bytes

readme.md

File metadata and controls

23 lines (17 loc) · 721 Bytes

A simple fork of conventional-changelog/conventional-changelog-angular

I added design, animation and text as new commit types: see changes here

Usage

npm i https://github.com/ddennis/conventional-changelog-ddennis --save-dev

With gulp:

gulp.task('changelog', function () {
    return gulp.src('CHANGELOG.md', {
        buffer: false
    })
        .pipe(conventionalChangelog(
              {
                    preset:'ddennis',
                    releaseCount:0
              }
         ))
    .pipe(gulp.dest('./'));
});