Skip to content

Commit

Permalink
fix: changeset config
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzjacobs committed Apr 23, 2024
1 parent 05fe4ce commit d855b18
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
2 changes: 1 addition & 1 deletion .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: npm test
- name: 😘 npm run build
run: npm run build
- name: create release PR
- name: check changesets
uses: changesets/action@v1
with:
commit: "chore: 🚀 release"
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"build": "tsup src/index.ts --dts --clean --format cjs,esm",
"dev": "npm run build -- --watch",
"prepublish": "npm run build",
"release": "npm publish --dry-run",
"release": "npx changeset publish",
"start": "npm run dev",
"test": "run-p test:*",
"test:lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"build": "vite build",
"dev": "vite dev",
"prepublish": "npm run build",
"release": "npm publish --dry-run",
"release": "npx changeset publish",
"start": "npm run dev",
"test": "run-p test:*",
"test:lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
Expand Down

0 comments on commit d855b18

Please sign in to comment.