Skip to content

Latest commit

 

History

History

commit-types

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

@gitmoji/commit-types

NPM version NPM downloads

Gitmoji styles commit types

Signature

type CommitTypes =
  | 'feat'           // Introducing new features
  | 'fix'            // Fixing a bug
  | 'refactor'       // Refactoring code (Not Introducing features or fix)
  | 'docs'           // add documents
  | 'test'           // Adding unit tests or e2e test
  | 'perf'           // Improving performance
  | 'revert'         // Reverting changes or commits
  | 'style'          // Updating the UI and style files
  | 'build'          // build artifacts
  | 'ci'             // working about CI build system
  | 'wip'            // Work in progress
  | 'chore';         // Work with configuration or other stuff

License

MIT ® Arvin Xu