@involvex/fresh-editor 0.1.77 → 0.1.78
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/binary-install.js +1 -1
- package/dist/binary-install.js +1 -1
- package/dist/install.js +1 -1
- package/package.json +1 -1
package/binary-install.js
CHANGED
|
@@ -38,7 +38,7 @@ function download(url, dest) {
|
|
|
38
38
|
async function install() {
|
|
39
39
|
const info = getBinaryInfo();
|
|
40
40
|
const archiveName = `fresh-editor-${info.target}.${info.ext}`;
|
|
41
|
-
const url = `https://github.com/${REPO}/releases/download/
|
|
41
|
+
const url = `https://github.com/${REPO}/releases/download/latest/${archiveName}`;
|
|
42
42
|
const archivePath = path.join(__dirname, archiveName);
|
|
43
43
|
const binDir = path.join(__dirname, 'bin');
|
|
44
44
|
const binaryPath = path.join(binDir, info.binaryName);
|
package/dist/binary-install.js
CHANGED
|
@@ -110,7 +110,7 @@ var require_binary_install = __commonJS((exports, module) => {
|
|
|
110
110
|
async function install() {
|
|
111
111
|
const info = getBinaryInfo();
|
|
112
112
|
const archiveName = `fresh-editor-${info.target}.${info.ext}`;
|
|
113
|
-
const url = `https://github.com/${REPO}/releases/download/
|
|
113
|
+
const url = `https://github.com/${REPO}/releases/download/latest/${archiveName}`;
|
|
114
114
|
const archivePath = path.join(__dirname, archiveName);
|
|
115
115
|
const binDir = path.join(__dirname, "bin");
|
|
116
116
|
const binaryPath = path.join(binDir, info.binaryName);
|
package/dist/install.js
CHANGED
|
@@ -110,7 +110,7 @@ var require_binary_install = __commonJS((exports, module) => {
|
|
|
110
110
|
async function install() {
|
|
111
111
|
const info = getBinaryInfo();
|
|
112
112
|
const archiveName = `fresh-editor-${info.target}.${info.ext}`;
|
|
113
|
-
const url = `https://github.com/${REPO}/releases/download/
|
|
113
|
+
const url = `https://github.com/${REPO}/releases/download/latest/${archiveName}`;
|
|
114
114
|
const archivePath = path.join(__dirname, archiveName);
|
|
115
115
|
const binDir = path.join(__dirname, "bin");
|
|
116
116
|
const binaryPath = path.join(binDir, info.binaryName);
|