├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── convention.md ├── index.js ├── package.json ├── readme.md ├── templates ├── commit.hbs ├── footer.hbs ├── header.hbs └── template.hbs └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp 3 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/convention.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/readme.md -------------------------------------------------------------------------------- /templates/commit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/templates/commit.hbs -------------------------------------------------------------------------------- /templates/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/templates/footer.hbs -------------------------------------------------------------------------------- /templates/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/templates/header.hbs -------------------------------------------------------------------------------- /templates/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/templates/template.hbs -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoe/conventional-changelog-standard/HEAD/test.js --------------------------------------------------------------------------------