UNPKG

@gitmoji/commit-types

Version:
32 lines (29 loc) 371 B
export type CommitTypes = | 'build' | 'ci' | 'docs' | 'feat' | 'fix' | 'perf' | 'refactor' | 'revert' | 'style' | 'test' | 'wip' | 'chore'; const types: CommitTypes[] = [ 'build', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'chore', 'wip', ]; module.exports = types; export default types;