Compare commits
1 Commits
caleb/fslib-2
...
v3.3.2
| Author | SHA1 | Date | |
|---|---|---|---|
| cf23147c9c |
Generated
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nexe",
|
"name": "nexe",
|
||||||
"version": "3.3.1",
|
"version": "3.3.2",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
"name": "nexe",
|
"name": "nexe",
|
||||||
"description": "Create a single executable out of your Node.js application",
|
"description": "Create a single executable out of your Node.js application",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "3.3.1",
|
"version": "3.3.2",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
"Craig Condon <craig.j.condon@gmail.com> (http://crcn.io)",
|
"Craig Condon <craig.j.condon@gmail.com> (http://crcn.io)",
|
||||||
"Jared Allard <jaredallard@outlook.com>",
|
"Jared Allard <jaredallard@outlook.com>",
|
||||||
|
|||||||
+1
-1
@@ -237,7 +237,7 @@ export class NexeCompiler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _configureAsync() {
|
private _configureAsync() {
|
||||||
if (isWindows && semverGt(this.target.version, '11.999')) {
|
if (isWindows && semverGt(this.target.version, '10.15.99')) {
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
}
|
}
|
||||||
return this._runBuildCommandAsync(this.env.PYTHON || 'python', [
|
return this._runBuildCommandAsync(this.env.PYTHON || 'python', [
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ import { runDockerBuild } from './docker'
|
|||||||
import { getTarget, targetsEqual, NexeTarget } from '../lib/target'
|
import { getTarget, targetsEqual, NexeTarget } from '../lib/target'
|
||||||
import { pathExistsAsync, readFileAsync, execFileAsync, semverGt } from '../lib/util'
|
import { pathExistsAsync, readFileAsync, execFileAsync, semverGt } from '../lib/util'
|
||||||
import got = require('got')
|
import got = require('got')
|
||||||
import { cpus } from 'os';
|
import { cpus } from 'os'
|
||||||
|
|
||||||
const env = process.env,
|
const env = process.env,
|
||||||
isPullRequest = env.BUILD_REASON === 'PullRequest',
|
isPullRequest = env.BUILD_REASON === 'PullRequest',
|
||||||
|
|||||||
Reference in New Issue
Block a user