Socket
Socket
Sign inDemoInstall

cmake-js

Package Overview
Dependencies
85
Maintainers
2
Versions
85
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.3.1 to 6.3.2

13

changelog.md

@@ -0,1 +1,14 @@

v6.3.2 - 06/06/22
==========
- fix: if --runtimeVerison must be explicitly specified if building for a different runtime
- Update baseurl for electron mirror
v6.3.1 - 05/06/22
==========
- add missing bluebird dependency
- fix platform detection for visual studio 2019 and newer
- fix platform detection for macos
v6.3.0 - 26/11/21

@@ -2,0 +15,0 @@ ==========

2

lib/runtimePaths.js

@@ -8,3 +8,3 @@ "use strict";

let IOJS_MIRROR = process.env.NVM_IOJS_ORG_MIRROR || "https://iojs.org/dist";
let ELECTRON_MIRROR = process.env.ELECTRON_MIRROR || "https://atom.io/download/atom-shell";
let ELECTRON_MIRROR = process.env.ELECTRON_MIRROR || "https://artifacts.electronjs.org/headers/dist";

@@ -11,0 +11,0 @@ let runtimePaths = {

@@ -38,3 +38,7 @@ "use strict";

get: function () {
return this.options.runtimeVersion || environment.runtimeVersion;
if (this.runtime != environment.runtime && !this.options.runtimeVersion) {
throw new Error(`Missing runtimeVersion. It must be specified when specifying the runtime`)
} else {
return this.options.runtimeVersion || environment.runtimeVersion;
}
}

@@ -41,0 +45,0 @@ }

@@ -19,3 +19,3 @@ {

"main": "lib",
"version": "6.3.1",
"version": "6.3.2",
"author": "Gábor Mező aka unbornchikken",

@@ -22,0 +22,0 @@ "repository": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc