├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .releaserc.js ├── LICENSE ├── README.md ├── index.js ├── lib ├── analyze-commits.js ├── assets │ ├── default-config.js │ ├── release-types.json │ └── templates │ │ ├── commit-template.hbs │ │ ├── default-template-semver.hbs │ │ └── default-template.hbs ├── generate-notes.js ├── helper │ ├── debug.js │ ├── get-cmp-link.js │ ├── get-config.js │ ├── parse-commits.js │ └── resolve-issue-ref.js └── release-notes.js ├── package.json └── test └── integration ├── analyze-commits.test.js ├── fixtures ├── contexts │ ├── commit-boring.json │ ├── commit-major.json │ ├── commit-minor.json │ ├── commit-patch.json │ ├── context-common.json │ ├── context-custom.json │ ├── context-wip.json │ └── index.js └── notes │ ├── notes-custom-helper.md │ ├── notes-custom-semver.md │ ├── notes-custom.md │ ├── notes-major-semver.md │ ├── notes-major.md │ ├── notes-minor-semver.md │ ├── notes-minor.md │ ├── notes-patch-semver.md │ ├── notes-patch.md │ ├── notes-wip-semver.md │ └── notes-wip.md └── generate-notes.test.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/.releaserc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/index.js -------------------------------------------------------------------------------- /lib/analyze-commits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/analyze-commits.js -------------------------------------------------------------------------------- /lib/assets/default-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/assets/default-config.js -------------------------------------------------------------------------------- /lib/assets/release-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/assets/release-types.json -------------------------------------------------------------------------------- /lib/assets/templates/commit-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/assets/templates/commit-template.hbs -------------------------------------------------------------------------------- /lib/assets/templates/default-template-semver.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/assets/templates/default-template-semver.hbs -------------------------------------------------------------------------------- /lib/assets/templates/default-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/assets/templates/default-template.hbs -------------------------------------------------------------------------------- /lib/generate-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/generate-notes.js -------------------------------------------------------------------------------- /lib/helper/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/helper/debug.js -------------------------------------------------------------------------------- /lib/helper/get-cmp-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/helper/get-cmp-link.js -------------------------------------------------------------------------------- /lib/helper/get-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/helper/get-config.js -------------------------------------------------------------------------------- /lib/helper/parse-commits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/helper/parse-commits.js -------------------------------------------------------------------------------- /lib/helper/resolve-issue-ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/helper/resolve-issue-ref.js -------------------------------------------------------------------------------- /lib/release-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/lib/release-notes.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/package.json -------------------------------------------------------------------------------- /test/integration/analyze-commits.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/analyze-commits.test.js -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/commit-boring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/commit-boring.json -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/commit-major.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/commit-major.json -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/commit-minor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/commit-minor.json -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/commit-patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/commit-patch.json -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/context-common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/context-common.json -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/context-custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/context-custom.json -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/context-wip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/context-wip.json -------------------------------------------------------------------------------- /test/integration/fixtures/contexts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/contexts/index.js -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-custom-helper.md: -------------------------------------------------------------------------------- 1 | Custom Helpers -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-custom-semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-custom-semver.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-custom.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-major-semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-major-semver.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-major.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-major.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-minor-semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-minor-semver.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-minor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-minor.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-patch-semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-patch-semver.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-patch.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-wip-semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-wip-semver.md -------------------------------------------------------------------------------- /test/integration/fixtures/notes/notes-wip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/fixtures/notes/notes-wip.md -------------------------------------------------------------------------------- /test/integration/generate-notes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/semantic-release-gitmoji/HEAD/test/integration/generate-notes.test.js --------------------------------------------------------------------------------