From 40529ffc683173636a717cd2aae69eefd42a2f0b Mon Sep 17 00:00:00 2001 From: YXL Date: Wed, 29 May 2024 00:07:06 +0800 Subject: [PATCH] v9.21.1 Signed-off-by: YXL --- .vscode/tasks.json | 2 +- CHANGELOG.md | 6 ++++++ package.json | 2 +- scripts/publish.mts | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a9f10ae1c..0d2c05676 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -62,7 +62,7 @@ { "type": "shell", "label": "yarn: package", - "command": "yarn build-dev && yarn dlx vsce package --no-dependencies", + "command": "yarn build-dev && yarn dlx @vscode/vsce package --no-dependencies", "group": { "kind": "build" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 87279d172..900c095a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how ## [Unreleased] +## [9.21.1] - 2024-05-28 + +### Fixed + +- Fix deleting local library ([#974](https://github.com/YXL76/cloudmusic-vscode/issues/974)) + ## [9.21.0] - 2024-05-28 ### Changed diff --git a/package.json b/package.json index 59a2ef71b..9b57752e0 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cloudmusic", "displayName": "Cloudmusic", "description": "Netease Music for VS Code", - "version": "9.21.0", + "version": "9.21.1", "publisher": "YXL", "private": true, "preview": false, diff --git a/scripts/publish.mts b/scripts/publish.mts index c968b8ca6..b0f853e12 100644 --- a/scripts/publish.mts +++ b/scripts/publish.mts @@ -53,7 +53,7 @@ console.log("Build complete"); // Publish // Publish to Visual Studio Marketplace -const publishArgs = ["yarn", "dlx", "-q", "vsce", "publish", "--no-dependencies", "--skip-duplicate", "-p", vsceToken, "--target"]; +const publishArgs = ["yarn", "dlx", "-q", "@vscode/vsce", "publish", "--no-dependencies", "--skip-duplicate", "-p", vsceToken, "--target"]; const decoder = new TextDecoder(); // Publish native @@ -107,7 +107,7 @@ await Deno.mkdir(buildPath, { recursive: true }); await Promise.all(artifacts.map(({ name }) => Deno.copyFile(resolve(artifactPath, name), resolve(buildPath, name)))); assert( - (await Deno.run({ cmd: ["yarn", "dlx", "-q", "vsce", "package", "--no-dependencies"] }).status()).success, + (await Deno.run({ cmd: ["yarn", "dlx", "-q", "@vscode/vsce", "package", "--no-dependencies"] }).status()).success, "Failed to package ", ); const vsix = `cloudmusic-${packageJSON.version}.vsix`;