Skip to content

Commit 17b2fb9

Browse files
committed
fix(vscode): release
1 parent 8eb94bf commit 17b2fb9

6 files changed

Lines changed: 17 additions & 108 deletions

File tree

.github/workflows/release-vscode-ext.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
working-directory: apps/vscode-ext
5050

5151
- name: Release
52-
run: pnpx semantic-release-monorepo
52+
run: pnpx semantic-release
5353
working-directory: apps/vscode-ext
5454
env:
5555
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}

apps/vscode-ext/.releaserc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const config = {
88
],
99
tagFormat: 'vscode-v${version}',
1010
plugins: [
11+
'semantic-release-commit-filter',
1112
'@semantic-release/commit-analyzer',
1213
'@semantic-release/release-notes-generator',
1314
['@semantic-release/npm', { npmPublish: false }], // Version bump only, no npm publish

apps/vscode-ext/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@
7777
"lint:fix": "eslint --fix .",
7878
"format": "prettier --write .",
7979
"typecheck": "tsc --noEmit",
80-
"release": "pnpx semantic-release-monorepo",
81-
"release:dry-run": "pnpx semantic-release-monorepo --dry-run",
80+
"release": "pnpx semantic-release",
81+
"release:dry-run": "pnpx semantic-release --dry-run",
8282
"vscode:prepublish": "pnpm run build"
8383
},
8484
"devDependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
"lefthook": "catalog:",
7070
"prettier": "catalog:",
7171
"semantic-release": "catalog:",
72+
"semantic-release-commit-filter": "catalog:",
7273
"semantic-release-linear-app": "catalog:",
73-
"semantic-release-monorepo": "catalog:",
7474
"semantic-release-pnpm": "^1.0.2",
7575
"typescript": "catalog:",
7676
"typescript-eslint": "catalog:",

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ catalog:
8585
rollup-plugin-copy: ^3.5.0
8686
rollup-plugin-visualizer: ^5.12.0
8787
semantic-release: ^24.2.7
88+
semantic-release-commit-filter: ^1.0.2
8889
semantic-release-linear-app: ^0.7.0
89-
semantic-release-monorepo: ^8.0.2
9090
tippy.js: ^6.3.7
9191
tsx: ^4.20.6
9292
typescript: ^5.9.2

0 commit comments

Comments
 (0)