1.0.3 ā€¢ Published 5 years ago

cz-commit-emoji v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

cz-commit-emoji

Commitizen adapter formatting commit messages using emojis.

cz-commit-emoji allows you to easily use emojis in your commits using commitizen.

? Select the type of change you are committing: (Use arrow keys)
āÆ feature   šŸŒŸ  A new feature
  fix       šŸž  A bug fix
  docs      šŸ“š  Documentation change
  refactor  šŸŽØ  A code refactoring change
  chore     šŸ”©  A chore change

Install

yarn add commitizen cz-commit-emoji --dev

Usage

In package.json

{
  ...
  "config": {
    "commitizen": {
      "path": "cz-commit-emoji"
    }
  }
}

or with a config file named .czrc.js

echo '{ "path": "cz-commit-emoji" }' > ./.czrc
$ git cz

Types

An Inquirer.js choices array:

{
  "config": {
    "cz-commit-emoji": {
      "types": [
        {
          "emoji": "šŸŒŸ",
          "code": ":star2:",
          "description": "A new feature",
          "name": "feature"
        }
      ]
    }
  }
}

The value property must be the emoji itself.

Scopes

An Inquirer.js choices array:

{
  "config": {
    "cz-commit-emoji": {
      "scopes": ["home", "accounts", "ci"]
    }
  }
}

Examples

License

MIT

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago