File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed 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
- npm publish npmDist
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
You can’t perform that action at this time.
0 commit comments