@hxz0727/api-switch-cc 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/install.js +1 -1
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -18,7 +18,7 @@ const { execSync } = require("child_process");
|
|
|
18
18
|
|
|
19
19
|
const PKG = require("./package.json");
|
|
20
20
|
// Download version — points to the GitHub release tag independent of npm version
|
|
21
|
-
const DOWNLOAD_VERSION = "v1.
|
|
21
|
+
const DOWNLOAD_VERSION = "v1.2.0";
|
|
22
22
|
const BASE = `https://github.com/hxz0727/API-Switch/releases/download/${DOWNLOAD_VERSION}`;
|
|
23
23
|
const BIN_DIR = join(__dirname, "bin");
|
|
24
24
|
|