Skip to content

Commit

Permalink
v9.21.2
Browse files Browse the repository at this point in the history
Signed-off-by: YXL <chenxin.lan.76@gmail.com>
  • Loading branch information
YXL76 committed May 28, 2024
1 parent 40529ff commit c4c6a69
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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.1",
"version": "9.21.2",
"publisher": "YXL",
"private": true,
"preview": false,
Expand Down
6 changes: 3 additions & 3 deletions scripts/build.mts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { BuildOptions, Plugin } from "https://deno.land/x/esbuild@v0.19.2/mod.js";
import { build, stop } from "https://deno.land/x/esbuild@v0.19.2/mod.js";
import { dirname, isAbsolute, join, resolve } from "https://deno.land/std@0.199.0/path/mod.ts";
import type { BuildOptions, Plugin } from "https://deno.land/x/esbuild@v0.21.4/mod.js";
import { build, stop } from "https://deno.land/x/esbuild@v0.21.4/mod.js";
import { dirname, isAbsolute, join, resolve } from "https://deno.land/std@0.224.0/path/mod.ts";

const prod = Deno.args.includes("--prod");

Expand Down
6 changes: 3 additions & 3 deletions scripts/publish.mts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Reference: [Platform-specific extensions](https://code.visualstudio.com/api/working-with-extensions/publishing-extension#platformspecific-extensions)

import { basename, extname, resolve } from "https://deno.land/std@0.199.0/path/mod.ts";
import { assert } from "https://deno.land/std@0.199.0/testing/asserts.ts";
import { basename, extname, resolve } from "https://deno.land/std@0.224.0/path/mod.ts";
import { assert } from "https://deno.land/std@0.224.0/testing/asserts.ts";
import packageJSON from "../package.json" assert { type: "json" };

const vsceToken = Deno.env.get("VSCE_TOKEN");
Expand All @@ -19,7 +19,7 @@ console.log(`Building extension version ${packageJSON.version}`);
const targetMap = {
// [Node target]: [VS Code target]
"win32-x64": ["win32-x64"],
"win32-ia32": ["win32-ia32"],
// "win32-ia32": ["win32-ia32"],
"win32-arm64": ["win32-arm64"],
"linux-x64": ["linux-x64", "alpine-x64"],
"linux-arm64": ["linux-arm64", "alpine-arm64"],
Expand Down

0 comments on commit c4c6a69

Please sign in to comment.