UNPKG

anl

Version:
89 lines (87 loc) โ€ข 2.14 kB
const types = { features: { description: 'A new feature', title: 'Features', emoji: '๐Ÿ’ก', subject: 'feat', }, bugfix: { description: 'A bug fix (development/test environment)', title: 'Bug Fixes', emoji: '๐Ÿ›', subject: 'fix', }, hotfix: { description: 'A bug fix (production environment)', title: 'Hot Fixes', emoji: '๐Ÿ”ฅ', subject: 'fix', }, chore: { description: "Daily work, miscellaneous", title: 'Chores', emoji: '๐Ÿ’ป', subject: 'chore', }, config: { description: 'Configuration changes', title: 'Configuration', emoji: '๐Ÿ”ง', subject: 'config', }, style: { description: 'Non-functional changes (whitespace, formatting, missing semicolons) or style file changes (css, less, scss, sass, stylus, styl)', title: 'Styles', emoji: '๐Ÿ’Ž', subject: 'style', }, refactor: { description: 'Code changes that neither fix bugs nor add features (code refactoring)', title: 'Code Refactoring', emoji: '๐Ÿ›ธ', subject: 'refactor', }, performance: { description: 'Performance optimization, improve performance (optimize code)', title: 'Performance Improvements', emoji: '๐Ÿš€', subject: 'perf', }, revert: { description: 'Revert previous commits', title: 'Reverts', emoji: '๐Ÿ’ฃ', subject: 'revert', }, document: { description: 'Document changes (README.md, CHANGELOG.md)', title: 'Documentation', emoji: '๐Ÿ“š', subject: 'docs', }, test: { description: 'Add missing tests or correct existing tests (test code)', title: 'Tests', emoji: '๐Ÿงช', subject: 'test', }, cicd: { description: 'Change CI / CD configuration files and scripts (example scope: Travis, Circle, BrowserStack, SauceLabs)', title: 'Continuous Integrations', emoji: '๐Ÿšข', subject: 'ci', }, build: { description: 'Changes affecting the build system or external dependencies (example scope: gulp, broccoli, npm, webpack, rollup, vite, esbuild, webpack)', title: 'Builds', emoji: '๐Ÿ“ฆ', subject: 'build', }, release: { description: 'Release version', title: 'Releases', emoji: '๐ŸŽ‰', subject: 'release', }, } module.exports = { types };