From 8105debea69caa513c8c14a3f872f6d7add8f4e8 Mon Sep 17 00:00:00 2001 From: Ed Date: Fri, 13 Dec 2024 20:44:01 +0900 Subject: [PATCH] fix(vscode): update vscode engine version to 1.96.0 (#2562) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Self Checklist - [x] I wrote a PR title in **English** and added an appropriate **label** to the PR. - [x] I wrote the commit message in **English** and to follow [**the Conventional Commits specification**](https://www.conventionalcommits.org/en/v1.0.0/). - [x] I [added the **changeset**](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md) about the changes that needed to be released. (or didn't have to) - [x] I wrote or updated **documentation** related to the changes. (or didn't have to) - [x] I wrote or updated **tests** related to the changes. (or didn't have to) - [x] I tested the changes in various browsers. (or didn't have to) - Windows: Chrome, Edge, (Optional) Firefox - macOS: Chrome, Edge, Safari, (Optional) Firefox ## Related Issue ## Summary https://github.com/channel-io/bezier-react/actions/runs/12310900865/job/34360202023 ```bash Error: @types/vscode ^1.96.0 greater than engines.vscode ^1.75.0. Consider upgrade engines.vscode or use an older @types/vscode version Error: Process completed with exit code 1. ``` 위 에러를 수정합니다. ## Details 상위 버전 명시 ### Breaking change? (Yes/No) No ## References - https://code.visualstudio.com/api/working-with-extensions/publishing-extension#visual-studio-code-compatibility --- packages/bezier-vscode/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bezier-vscode/package.json b/packages/bezier-vscode/package.json index 839ef4ebc..f2c9eb013 100644 --- a/packages/bezier-vscode/package.json +++ b/packages/bezier-vscode/package.json @@ -20,7 +20,7 @@ "extension" ], "engines": { - "vscode": "^1.75.0" + "vscode": "^1.96.0" }, "activationEvents": [ "onLanguage:typescript",