1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# Contributing
If you have any questions or run into any trouble contributing to this repo, please file an issue or contact [the maintainer](https://github.com/jeffcarp).
# Checklists
## Before submitting a Pull Request
- `npm run lint`
- `npm test`
## Deploy
- `git checkout master`
- `git pull`
- `git status`
- Verify clean working directory
- Verify branch is up-to-date with 'origin/master'
- `yarn install`
- `yarn test`
- Bump version in `package.json`
- Update `CHANGELOG.md` to reflect changes since last tag
- `git add package.json yarn.lock CHANGELOG.md`
- `git commit -m "Version 0.0.0"`
- `git tag -m "0.0.0" 0.0.0`
- `git push`
- `git push --tags`
- `npm publish`
|