Skip to content

Commit 49e6608

Browse files
committed
update contribution guide
1 parent df5f0aa commit 49e6608

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ Before you get your hands dirty, please [search](https://github.com/http-party/h
2424
Follow these steps to get going.
2525

2626
1. [Install the latest version of Node.js](https://nodejs.org/en/download).
27-
- If you're new to installing Node, a tool like [nvm](https://github.com/creationix/nvm#install-script) can help you manage multiple version installations.
27+
- If you're new to installing Node, a tool like [nvm](https://github.com/creationix/nvm#install-script) can help you manage multiple version installations.
2828
1. Follow [Github's documentation](https://help.github.com/articles/fork-a-repo/) on setting up Git, forking and cloning.
2929
1. Create a new branch in your fork, giving it a descriptive name
3030
1. Execute `npm install` to install the prod and dev dependencies
31-
- Do not use `yarn install` for development, as it may not get the same package versions as other developers.
31+
- Do not use `yarn install` for development, as it may not get the same package versions as other developers.
3232
1. Make your changes and add them via `git add`.
33-
- **Tests are required** for any non-trivial code change. If you're having trouble making tests, go ahead and open the pull request and we can help
34-
- Keep your PR focused. Don't fix multiple things at once, and don't upgrade dependencies unless necessary.
33+
- **Tests are required** for any non-trivial code change. If you're having trouble making tests, go ahead and open the pull request and we can help
34+
- Keep your PR focused. Don't fix multiple things at once, and don't upgrade dependencies unless necessary.
3535
1. Before committing, run `npm test`
36-
- Tests will also run on your PR, but running them locally will let you catch problems ahead-of-time.
36+
- Tests will also run on your PR, but running them locally will let you catch problems ahead-of-time.
3737
1. Commit your changes.
38-
- See [How to Write a Git Commit Message](https://chris.beams.io/posts/git-commit/).
38+
- See [How to Write a Git Commit Message](https://chris.beams.io/posts/git-commit/).
3939
1. Push your changes to your fork.
4040
1. Now on [http-party/http-server](https://github.com/http-party/http-server), you should see a notification about your recent changes in your fork's branch, with a green button to create a pull request. Click the button.
4141
1. Describe your changes in detail here, following the template. Once you're satisfied, submit the form.
4242
1. Be patient while your PR is reviewed. This can take a while. We may request changes, but don't be afraid to question them.
4343
1. Your PR might become conflicted with the code in `master`. If this is the case, you will need to [update your PR](#up-to-date) and resolve your conflicts.
4444
1. You don't need to make a new PR to any needed changes. Instead, commit on top of your changes, and push these to your fork's branch. The PR will be updated, and CI will re-run.
45-
- **Please do not rebase and force-push**, it ruins the git history
45+
- **Please do not rebase and force-push**, it ruins the git history
4646

4747
## :angel: I Just Want To Help
4848

0 commit comments

Comments
 (0)