From ea6f1f08084cf8b6834ae51f4b0dc0f2b085dfd9 Mon Sep 17 00:00:00 2001 From: calebboyd Date: Mon, 22 Jun 2020 14:59:44 -0500 Subject: [PATCH] fix: update legacy v3 tag while v4 is beta --- README.md | 2 +- package-lock.json | 2 +- package.json | 2 +- src/options.ts | 2 +- test/options.spec.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8832d3a..dc5d0b9 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Additional files or resources can be added to the binary by passing `-r "glob/pa ## Compiling Node -By default `nexe` will attempt to download a pre-built executable. These are listed on the [Nexe V3 releases page](https://github.com/nexe/nexe/releases/tag/v3.0.0). The exact version you want may be unavailable or you may want to customize what is built. See `nexe --help` for a list of options available when passing the [`--build`](#build-boolean) option. You will also need to ensure your environment is setup to [build node](https://github.com/nodejs/node/blob/master/BUILDING.md). Note: the `python` binary in your path should be an acceptable version of python 2. eg. Systems that have python2 will need to create a [symlink](https://github.com/nexe/nexe/issues/354#issuecomment-319874486). +By default `nexe` will attempt to download a pre-built executable. These are listed on the [Nexe V3 releases page](https://github.com/nexe/nexe/releases/tag/v3.3.3). The exact version you want may be unavailable or you may want to customize what is built. See `nexe --help` for a list of options available when passing the [`--build`](#build-boolean) option. You will also need to ensure your environment is setup to [build node](https://github.com/nodejs/node/blob/master/BUILDING.md). Note: the `python` binary in your path should be an acceptable version of python 2. eg. Systems that have python2 will need to create a [symlink](https://github.com/nexe/nexe/issues/354#issuecomment-319874486). ## Node.js API diff --git a/package-lock.json b/package-lock.json index de459f3..72c2031 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nexe", - "version": "4.0.0-beta.9", + "version": "4.0.0-beta.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index f3a5d1a..2826867 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "nexe", "description": "Create a single executable out of your Node.js application", "license": "MIT", - "version": "4.0.0-beta.9", + "version": "4.0.0-beta.10", "contributors": [ "Craig Condon (http://crcn.io)", "Jared Allard ", diff --git a/src/options.ts b/src/options.ts index 41f46f6..9d43420 100644 --- a/src/options.ts +++ b/src/options.ts @@ -71,7 +71,7 @@ const defaults = { bundle: true, patches: [], plugins: [], - remote: 'https://github.com/nexe/nexe/releases/download/v3.0.0/', + remote: 'https://github.com/nexe/nexe/releases/download/v3.3.3/', } const alias = { i: 'input', diff --git a/test/options.spec.ts b/test/options.spec.ts index 01a85e2..ec4da03 100644 --- a/test/options.spec.ts +++ b/test/options.spec.ts @@ -43,7 +43,7 @@ describe('options', () => { describe('remote', () => { it('should use default remote', () => { const options = normalizeOptions({}) - expect(options.remote).to.equal('https://github.com/nexe/nexe/releases/download/v3.0.0/') + expect(options.remote).to.equal('https://github.com/nexe/nexe/releases/download/v3.3.3/') }) it('should append trailing slash to third-party remote if necessary', () => { const options = normalizeOptions({