Skip to content

Commit 57704c7

Browse files
fix(ci): invoke changeset via bunx so release workflow finds the binary
`bun run release` doesn't surface node_modules/.bin/changeset on PATH the way npm/pnpm do, so the workflow died with "changeset: command not found". Pinning the call to `bunx changeset` is the standard bun fix and works locally too. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 3356fca commit 57704c7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"lint": "bun run --filter '*' lint",
1313
"format": "prettier --write \"**/*.{ts,tsx,js,json,md,css}\"",
1414
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md,css}\"",
15-
"changeset": "changeset",
16-
"version-packages": "changeset version",
17-
"release": "bun run --filter '@onkernel/managed-auth-react' build && cp LICENSE packages/managed-auth-react/LICENSE && changeset publish"
15+
"changeset": "bunx changeset",
16+
"version-packages": "bunx changeset version",
17+
"release": "bun run --filter '@onkernel/managed-auth-react' build && cp LICENSE packages/managed-auth-react/LICENSE && bunx changeset publish"
1818
},
1919
"devDependencies": {
2020
"@types/node": "^20",

0 commit comments

Comments
 (0)