Skip to content

Commit b72451f

Browse files
committed
Fix changeset version bumping
1 parent 9ee2033 commit b72451f

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

.github/workflows/changeset-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
commit: "changeset version bump"
6262
title: "Changeset version bump"
63-
version: pnpm --filter roo-cline version-packages # This performs the changeset version bump
63+
version: pnpm changeset:version # This performs the changeset version bump
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6666

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"clean": "turbo clean --log-order grouped --output-logs new-only && rimraf dist out bin .vite-port .turbo",
1515
"build": "pnpm --filter roo-cline vsix",
1616
"build:nightly": "pnpm --filter @roo-code/vscode-nightly vsix",
17-
"changeset": "changeset",
17+
"publish": "pnpm build && changeset publish && pnpm install --frozen-lockfile",
18+
"changeset:version": "changeset version && pnpm install --frozen-lockfile",
1819
"knip": "pnpm --filter @roo-code/build build && knip --include files",
1920
"update-contributors": "node scripts/update-contributors.js"
2021
},

pnpm-lock.yaml

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,6 @@
327327
"build": "pnpm bundle --production && pnpm --filter @roo-code/vscode-webview build",
328328
"build:development": "pnpm bundle && pnpm --filter @roo-code/vscode-webview build",
329329
"publish:marketplace": "vsce publish --no-dependencies && ovsx publish --no-dependencies",
330-
"publish": "pnpm vsix && changeset publish && pnpm install --package-lock-only",
331-
"version-packages": "changeset version && pnpm install --package-lock-only",
332330
"vscode:prepublish": "pnpm build",
333331
"vsix": "mkdirp ../bin && npx vsce package --no-dependencies --out ../bin",
334332
"watch:esbuild": "pnpm bundle --watch",
@@ -397,8 +395,6 @@
397395
"zod": "^3.24.2"
398396
},
399397
"devDependencies": {
400-
"@changesets/cli": "^2.27.10",
401-
"@changesets/types": "^6.0.0",
402398
"@jest/globals": "^29.7.0",
403399
"@roo-code/config-eslint": "workspace:^",
404400
"@roo-code/config-typescript": "workspace:^",

0 commit comments

Comments
 (0)