その他のIssueも歓迎しています。
Other issues are also welcome.
Pull Requestはいつでも歓迎しています。 軽微な修正のPull Requestは、Issueを立てずにPull Requestを送ってもらって問題ありません。 「このような修正/改善しませんか?」という場合は、Issueを立てて相談してください。
Pull requests are always welcome. For minor changes, you can submit a pull request without opening an issue. If you have a suggestion for a modification or improvement, please open an issue to discuss it.
- フォークする
- フィーチャーブランチを作成する:
git checkout -b my-new-feature
- 変更を追加:
git add .
- 変更をコミット:
git commit -am 'Add some feature'
- ブランチをプッシュ:
git push origin my-new-feature
- プルリクエストを提出 😎
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Add your changes:
git add .
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request 😎
$ npm test
を実行するとテストを実行できます。テストは、__tests__
フォルダ、jestを利用しています。
You can run tests by executing
$ npm test
.Tests are located in the__tests__
folder and utilize jest.
npm test
以下の形式で記載してください。
概要・・・
本文・・・
fix #12345
関連するIssueがあれが記載してください。 fix #<issue番号> と書くと、PRをマージした時に自動的にIssueを閉じられます。
Linking a pull request to an issue - GitHub Docs
Please write in the following format:
Summary... Body... fix #12345
Please mention any related issues. If you write fix #, the issue will be automatically closed when the PR is merged.