https://github.com/fuse-box/gulp-changelog-generator
https://github.com/fuse-box/gulp-changelog-generator
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fuse-box/gulp-changelog-generator
- Owner: fuse-box
- License: mit
- Created: 2017-02-22T08:49:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-10T09:20:37.000Z (over 9 years ago)
- Last Synced: 2025-01-12T11:32:06.576Z (over 1 year ago)
- Language: TypeScript
- Size: 42 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
1. Installations
___
```shell
bin: npm i | yarn add changelog-generator
```
Example Gulp
```json
import {gulpChangeLogGeneratorPlugin} from 'gulp-changelog-generator';
gulp.task('default', () => {
const config: Config = {
username: 'user',
password: 'secret',
repoOwner: 'fuse-box',
repoName: 'fuse-box'
};
gulp
.src('./test/CHANGELOG.md', {buffer: false})
.pipe(gulpChangeLogGeneratorPlugin(config))
.pipe(gulp.dest('dist'));
});
```