You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,18 +93,22 @@ then use `npm version patch|minor|major` in order to increment the version in
93
93
package.json and tag and commit a release. Then `git push && git push --tags`
94
94
to sync this change with source control. Then `npm publish npmDist` to actually
95
95
publish the release to NPM.
96
-
Once published, add [release notes](https://github.com/graphql/graphql-js/tags).
96
+
Once published, add [release notes](https://github.com/graphql/graphql-js/releases).
97
97
Use [semver](https://semver.org/) to determine which version part to increment.
98
98
99
99
Example for a patch release:
100
100
101
101
```sh
102
+
npm ci
102
103
npm test
103
104
npm version patch
104
105
git push --follow-tags
105
106
cd npmDist && npm publish
107
+
npm run changelog
106
108
```
107
109
110
+
Then upload the changelog to [https://github.com/graphql/graphql-js/releases](https://github.com/graphql/graphql-js/releases).
111
+
108
112
## License
109
113
110
114
By contributing to graphql-js, you agree that your contributions will be
0 commit comments