Lines Matching defs:changelog
15 * The types and scopes accepted by both Commitlint and Commitizen are defined by the changelog
16 * configuration file - `changelog.yaml` - as they decide which section of the changelog commits
20 let changelog;
23 const contents = fs.readFileSync("changelog.yaml", "utf8");
25 changelog = yaml.load(contents);
33 * The next couple of functions are just used to transform the changelog YAML configuration
34 * structure into one accepted by the Conventional Changelog adapter (conventional-changelog-tf-a).
59 const types = getTypes(changelog.sections);
60 const sections = getSections(changelog.subsections);
123 "filename": "tools/conventional-changelog-tf-a/package.json",