@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 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/v${VERSION}/${archiveName}`;
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);
@@ -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/v${VERSION}/${archiveName}`;
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/v${VERSION}/${archiveName}`;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@involvex/fresh-editor",
3
- "version": "0.1.77",
3
+ "version": "0.1.78",
4
4
  "description": "A modern terminal-based text editor with plugin support",
5
5
  "repository": {
6
6
  "type": "git",