Skip to content

Commit 5fe05af

Browse files
committed
Update CONTRIBUTING
1 parent 84138db commit 5fe05af

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ This will watch the file system run any relevant lint, tests, and type checks au
8484

8585
To release a new version on NPM, first ensure all tests pass with `npm test`,
8686
then use `npm version patch|minor|major` in order to increment the version in
87-
package.json and tag and commit a release. Then `git push --tags` this change so
88-
Travis CI can deploy to NPM. *Do not run `npm publish` directly.*
87+
package.json and tag and commit a release. Then `git push && git push --tags`
88+
this change so Travis CI can deploy to NPM. *Do not run `npm publish` directly.*
8989
Once published, add [release notes](https://github.com/graphql/graphql-js/tags).
9090
Use [semver](http://semver.org/) to determine which version part to increment.
9191

@@ -94,6 +94,7 @@ Example for a patch release:
9494
```sh
9595
npm test
9696
npm version patch
97+
git push
9798
git push --tags
9899
```
99100

0 commit comments

Comments
 (0)