Thanks for thinking about contributing to this project. 😍
-
Make sure the new word is not already part of the keyword array. For example: in
"hocho": ["cut", "cutlery"]
,cut
is part ofcutlery
, so by addingcutlery
, you should removecut
from the keyword array. -
Make sure that the format matches all other lines. The rules are the following:
-
Double quote the words:
❌'a'
⭕"a"
-
A space following comma and colon:
❌"horse":["animal","unicorn"],
⭕"horse": ["animal", "unicorn"],
-
-
It's preferred that when adding a keyword to one specific emoji, you use that emoji or a relevant emoji as the commit message. For example:
2a34a84
-
Make sure you have a good description in the pull request if your changes contain more than keyword changes.
❌Update html
⭕Change a typo in the toggle text button
-
Include at least one emoji in your pull request description.
-
There are tests for
emojis.json
, please do your best to fix the errors if any. You should be able to see your branch's test status on https://travis-ci.org/muan/emojilib/pull_requests
- Run
npm run build
and commit the changes - Update version in
bower.json
andpackage.json
and commit with changes git tag [new version number]
git push --tags
npm publish