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: DEVELOPMENT.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Changesets will do most of the heavy lifting for our releases. When changes are
16
16
### Starting a new pre-release
17
17
18
18
- Ensure you are on the new `release-*` branch.
19
-
- Enter Changesets pre-release mode using the `pre` tag: `yarn changeset pre enter pre`.
19
+
- Enter Changesets pre-release mode using the `pre` tag: `pnpm changeset pre enter pre`.
20
20
- Commit the change and push the `release-*` branch to GitHub.
21
21
- Wait for the release workflow to finish. The Changesets action in the workflow will open a PR that will increment all versions and generate the changelogs.
22
22
- Review the updated `CHANGELOG` files and make any adjustments necessary, then merge the PR into the `release-*` branch.
@@ -32,7 +32,7 @@ Changesets will do most of the heavy lifting for our releases. When changes are
32
32
You may need to make changes to a pre-release prior to publishing a final stable release. To do so:
33
33
34
34
- Make whatever changes you need.
35
-
- Create a new changeset: `yarn changeset`.
35
+
- Create a new changeset: `pnpm changeset`.
36
36
-**IMPORTANT:** This is required even if you ultimately don't want to include these changes in the logs. Remember, changelogs can be edited prior to publishing, but the Changeset version script needs to see new changesets in order to create a new version.
37
37
- Commit the changesets and push the `release-*` branch to GitHub.
38
38
- Wait for the release workflow to finish and the Changesets action to open its PR that will increment all versions.
@@ -42,7 +42,7 @@ You may need to make changes to a pre-release prior to publishing a final stable
42
42
43
43
### Publishing the stable release
44
44
45
-
- Exit Changesets pre-release mode: `yarn changeset pre exit`.
45
+
- Exit Changesets pre-release mode: `pnpm changeset pre exit`.
46
46
- Commit the edited pre-release file along with any unpublished changesets, and push the `release-*` branch to GitHub.
47
47
- Wait for the release workflow to finish. The Changesets action in the workflow will open a PR that will increment all versions and generate the changelogs for the stable release.
48
48
- Review the updated `CHANGELOG` files and make any adjustments necessary.
@@ -71,6 +71,6 @@ Experimental releases and hot-fixes do not need to be branched off of `dev`. Exp
71
71
72
72
- Create a new branch for the release: `git checkout -b release-experimental`
73
73
- Make whatever changes you need and commit them: `git add . && git commit "experimental changes!"`
74
-
- Update version numbers and create a release tag: `yarn run version:experimental`
74
+
- Update version numbers and create a release tag: `pnpm run version:experimental`
75
75
- Push to GitHub: `git push origin --follow-tags`
76
76
- The CI workflow should automatically trigger from the experimental tag to publish the release to npm
0 commit comments