Skip to content

Commit 7933499

Browse files
chore: enhance versioning (#234)
1 parent cb88792 commit 7933499

File tree

9 files changed

+705
-17
lines changed

9 files changed

+705
-17
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,21 @@ Run a command in the context of specific workspaces.
7373
npm run test --workspace=add-stakeholder --workspace=other
7474
```
7575

76+
## Release
77+
78+
Run changeset command to create a changeset file.
79+
80+
```bash
81+
npx changeset
82+
```
83+
84+
Run changeset version command to bump the version of the packages that have changesets.
85+
86+
```bash
87+
npx changeset version
88+
```
89+
90+
Push the changes to the remote repository. Once the changes are merged, the new versions will be deployed automatically.
91+
7692
For more info about workinng with NPM workspaces see:
7793
https://docs.npmjs.com/cli/v8/using-npm/workspaces

0 commit comments

Comments
 (0)