Skip to content

Commit 1aa9575

Browse files
committed
feat: add changesets
1 parent bf08460 commit 1aa9575

File tree

4 files changed

+573
-2
lines changed

4 files changed

+573
-2
lines changed

.changeset/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changesets
2+
3+
This repository uses [Changesets]() with [pnpm](https://pnpm.io/using-changesets) to manage releases.
4+
5+
To generate a new changeset, run `pnpm changeset` in the root of the repository.
6+
The generated markdown files in this directory should be committed with the changes.

.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/config@3.0.3/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+
}

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
"publishConfig": {
77
"access": "public"
88
},
9-
"scripts": {
10-
},
9+
"scripts": {},
1110
"dependencies": {
1211
"@types/node": "^20.17.0"
12+
},
13+
"devDependencies": {
14+
"@changesets/cli": "^2.27.9"
1315
}
1416
}

0 commit comments

Comments
 (0)