Skip to content

Commit 417af87

Browse files
committed
docs(changeset): Initial release
1 parent 3b5cd50 commit 417af87

File tree

5 files changed

+802
-0
lines changed

5 files changed

+802
-0
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": true,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "master",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.changeset/odd-shirts-thank.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'graphql-x': patch
3+
---
4+
5+
Initial release

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@
2020
"packageManager": "[email protected]",
2121
"main": "dist/index.js",
2222
"scripts": {
23+
"prepublishOnly": "npm run ci",
2324
"dev": "vitest",
2425
"ci": "npm run build && npm run check-format && npm run check-exports && npm run test",
26+
"local-release": "changeset version && changeset publish",
2527
"build": "tsc",
2628
"format": "prettier --write .",
2729
"check-format": "prettier --check .",
@@ -33,6 +35,7 @@
3335
},
3436
"devDependencies": {
3537
"@arethetypeswrong/cli": "^0.16.4",
38+
"@changesets/cli": "^2.27.9",
3639
"prettier": "^3.3.3",
3740
"typescript": "^5.6.3",
3841
"vitest": "^2.1.3"

0 commit comments

Comments
 (0)