Skip to content

Commit

Permalink
v9.21.1
Browse files Browse the repository at this point in the history
Signed-off-by: YXL <[email protected]>
  • Loading branch information
YXL76 committed May 28, 2024
1 parent c076995 commit 40529ff
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions scripts/publish.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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`;
Expand Down

0 comments on commit 40529ff

Please sign in to comment.