Comparing version 0.1.1 to 0.2.0
@@ -12,3 +12,3 @@ #!/usr/bin/env node | ||
// Which binary to download. | ||
// Parse runtimes and versions. | ||
let runtime = process.env.npm_config_runtime | ||
@@ -30,2 +30,10 @@ if (!runtime) | ||
shortver = shortver.substring(0, shortver.lastIndexOf('.')) | ||
// Electron 1.8.x is the same with Node 8.x | ||
if (runtime == 'electron' && shortver == '1.8') { | ||
runtime = 'node' | ||
shortver = '8' | ||
} | ||
// Get the filename of binary. | ||
const targetOs = { | ||
@@ -32,0 +40,0 @@ win32: 'win', |
{ | ||
"name": "gui", | ||
"version": "0.1.1", | ||
"version": "0.2.0", | ||
"description": "Bindings to Yue's GUI library", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/yue/node-gui", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3072
45