UNPKG

wangeditor-plugin-upload-pdf

Version:
60 lines (59 loc) β€’ 1.5 kB
module.exports = { types: [ { value: 'WIP', name: 'πŸ’‘ WIP: Work in progress', }, { value: 'feat', name: 'πŸš€ feat: A new feature', }, { value: 'fix', name: 'πŸ”§ fix: A bug fix', }, { value: 'refactor', name: 'πŸ”¨ refactor: A code change that neither fixes a bug nor adds a feature', }, { value: 'release', name: 'πŸ›³ release: Bump to a new Semantic version', }, { value: 'docs', name: 'πŸ“š docs: Documentation only changes', }, { value: 'test', name: 'πŸ” test: Add missing tests or correcting existing tests', }, { value: 'perf', name: '⚑️ perf: Changes that improve performance', }, { value: 'chore', name: "🚬 chore: Changes that don't modify src or test files. Such as updating build tasks, package manager", }, { value: 'workflow', name: 'πŸ“¦ workflow: Changes that only affect the workflow. Such as updating build systems or CI etc.', }, { value: 'style', name: 'πŸ’… style: Code Style, Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)', }, { value: 'revert', name: '⏱ revert: Revert to a commit', }, ], // Specify the scopes for your particular project scopes: [], allowCustomScopes: true, allowBreakingChanges: ['feat', 'fix'], }