Skip to content

Commit 05a712a

Browse files
committed
fix: add changeset script to package.json
1 parent 3a2a678 commit 05a712a

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.changeset/eight-jokes-tickle.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"google-workspace-vscode-extension": patch
3+
---
4+
5+
Change to monorepo structure.

CONTRIBUTING.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,19 @@ use GitHub pull requests for this purpose. Consult
2222
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
2323
information on using pull requests.
2424

25+
## Changesets
26+
27+
This project uses [Changesets](https://github.com/changesets/changesets) to manage releases.
28+
If you are making a change that should be included in the release notes, you must add a changeset.
29+
30+
To add a changeset, run the following command:
31+
32+
```sh
33+
pnpm changeset
34+
```
35+
36+
You will be prompted to select the packages that have been changed, the type of change (major, minor, or patch), and to provide a description of the change.
37+
2538
## Community Guidelines
2639

2740
This project follows [Google's Open Source Community

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"private": true,
44
"scripts": {
55
"build": "turbo build",
6+
"changeset": "changeset",
67
"check": "turbo check",
78
"ci:package": "turbo run ci:package",
89
"ci:release": "turbo run ci:release",

0 commit comments

Comments
 (0)