🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

node-gyp

Package Overview
Dependencies
Maintainers
3
Versions
161
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-gyp - npm Package Compare versions

Comparing version
12.0.0
to
12.1.0
+1
-1
.release-please-manifest.json
{
".": "12.0.0"
".": "12.1.0"
}

@@ -7,3 +7,3 @@ #!/usr/bin/env node

const { default: envPaths } = require('env-paths')
const envPaths = require('env-paths')
const gyp = require('../')

@@ -10,0 +10,0 @@ const log = require('../lib/log')

@@ -122,3 +122,3 @@ 'use strict'

async findVisualStudio2019OrNewerFromSpecifiedLocation () {
return this.findVSFromSpecifiedLocation([2019, 2022])
return this.findVSFromSpecifiedLocation([2019, 2022, 2026])
}

@@ -166,3 +166,3 @@

async findVisualStudio2019OrNewerUsingSetupModule () {
return this.findNewVSUsingSetupModule([2019, 2022])
return this.findNewVSUsingSetupModule([2019, 2022, 2026])
}

@@ -228,3 +228,3 @@

async findVisualStudio2019OrNewer () {
return this.findNewVS([2019, 2022])
return this.findNewVS([2019, 2022, 2026])
}

@@ -395,2 +395,6 @@

}
if (ret.versionMajor === 18) {
ret.versionYear = 2026
return ret
}
this.log.silly('- unsupported version:', ret.versionMajor)

@@ -463,2 +467,4 @@ return {}

return 'v143'
} else if (versionYear === 2026) {
return 'v145'
}

@@ -465,0 +471,0 @@ this.log.silly('- invalid versionYear:', versionYear)

@@ -14,3 +14,3 @@ {

],
"version": "12.0.0",
"version": "12.1.0",
"installVersion": 11,

@@ -26,3 +26,3 @@ "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",

"dependencies": {
"env-paths": "^3.0.0",
"env-paths": "^2.2.0",
"exponential-backoff": "^3.1.1",

@@ -29,0 +29,0 @@ "graceful-fs": "^4.2.6",

Sorry, the diff of this file is too big to display