Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
uses: wyvox/action-setup-pnpm@v3
with:
node-version: '18'
args: --frozen-lockfile


- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@changesets/cli": "^2.24.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.7.4",
"changeset": "^0.2.6",
Comment on lines +31 to 33

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The changeset package (v0.2.6) is an ancient, unrelated package that is redundant and potentially conflicting with @changesets/cli. @changesets/cli already provides the changeset binary used in your release script (changeset publish). Removing changeset cleans up your dependencies and avoids potential binary/command conflicts.

Suggested change
"@changesets/cli": "^2.31.0",
"@types/node": "^22.7.4",
"changeset": "^0.2.6",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.7.4",

"husky": "^9.1.7",
Expand Down
Loading
Loading