We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ccb308 commit db168bcCopy full SHA for db168bc
CONTRIBUTING.md
@@ -2,10 +2,13 @@
2
3
This package uses a custom publish flow.
4
5
+**IMPORTANT**: Do not push directly to `main` - every change must go through a PR
6
+otherwise changelog generation will fail.
7
+
8
```sh
9
npm install
10
npm version patch # or minor or major
-git push && git push --tags
11
+git push --follow-tags
12
npm run build
13
cd npmDist
14
npm publish --tag=next
@@ -18,3 +21,9 @@ All good? Publish:
18
21
19
22
npm dist-tags add graphql-relay@VERSION_NUMBER latest
20
23
```
24
25
+Finally generate the CHANGELOG:
26
27
+```sh
28
+node resources/gen-changelog.js
29
+```
0 commit comments