1.0.1 • Published 8 years ago
detect-repo-changelog v1.0.1
detect-repo-changelog
Scans a repository directory, searching for a changelog file.
Uses changelog-filename-regex to match against a variety of changelog filenames.
Installation
$ npm install detect-repo-changelog
Usage
detectRepoChangelog(dir) -> Promise
const detectRepoChangelog = require('detect-repo-changelog');
detectRepoChangelog('./some-repository-directory')
.then((changelogFile) => {
if (changelogFile) {
console.log(`changelog file is ${changelogFile}`);
} else {
console.log('no changelog detected');
}
});
Tests
$ npm test
$ npm test-cov
to get coverage report
License
Released under the MIT License.