wangeditor-plugin-upload-pdf
Version:
wangEditor ε―Όε ₯PDF
60 lines (59 loc) β’ 1.5 kB
JavaScript
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'],
}