charlike
Version:
Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options
38 lines (37 loc) • 1.1 kB
JSON
{
"types": {
"feat": {
"description": "A new feature"
},
"fix": {
"description": "A bug fix"
},
"docs": {
"description": "Documentation only changes"
},
"style": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature"
},
"perf": {
"description": "A code change that improves performance"
},
"test": {
"description": "Adding missing tests or correcting existing tests"
},
"build": {
"description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)"
},
"ci": {
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)"
},
"chore": {
"description": "Other changes that don't modify src or test files"
},
"revert": {
"description": "Reverts a previous commit"
}
}
}