Skip to content

Commit 6af582f

Browse files
committed
1 parent 0cfe9de commit 6af582f

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

node_modules/npm-install-checks/lib/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ const checkPlatform = (target, force = false, environment = {}) => {
3636
let libcFamily = null
3737
if (target.libc) {
3838
// libc checks only work in linux, any value is a failure if we aren't
39-
if (platform !== 'linux') {
39+
if (environment.libc) {
40+
libcOk = checkList(environment.libc, target.libc)
41+
} else if (platform !== 'linux') {
4042
libcOk = false
4143
} else {
4244
const report = process.report.getReport()

node_modules/npm-install-checks/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "npm-install-checks",
3-
"version": "6.2.0",
3+
"version": "6.3.0",
44
"description": "Check the engines and platform fields in package.json",
55
"main": "lib/index.js",
66
"dependencies": {
77
"semver": "^7.1.1"
88
},
99
"devDependencies": {
1010
"@npmcli/eslint-config": "^4.0.0",
11-
"@npmcli/template-oss": "4.18.0",
11+
"@npmcli/template-oss": "4.19.0",
1212
"tap": "^16.0.1"
1313
},
1414
"scripts": {
@@ -39,7 +39,7 @@
3939
"author": "GitHub Inc.",
4040
"templateOSS": {
4141
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
42-
"version": "4.18.0",
42+
"version": "4.19.0",
4343
"publish": "true"
4444
},
4545
"tap": {

package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"nopt": "^7.2.0",
136136
"normalize-package-data": "^6.0.0",
137137
"npm-audit-report": "^5.0.0",
138-
"npm-install-checks": "^6.2.0",
138+
"npm-install-checks": "^6.3.0",
139139
"npm-package-arg": "^11.0.1",
140140
"npm-pick-manifest": "^9.0.0",
141141
"npm-profile": "^9.0.0",
@@ -10845,9 +10845,9 @@
1084510845
}
1084610846
},
1084710847
"node_modules/npm-install-checks": {
10848-
"version": "6.2.0",
10849-
"resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.2.0.tgz",
10850-
"integrity": "sha512-744wat5wAAHsxa4590mWO0tJ8PKxR8ORZsH9wGpQc3nWTzozMAgBN/XyqYw7mg3yqLM8dLwEnwSfKMmXAjF69g==",
10848+
"version": "6.3.0",
10849+
"resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz",
10850+
"integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==",
1085110851
"inBundle": true,
1085210852
"dependencies": {
1085310853
"semver": "^7.1.1"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"nopt": "^7.2.0",
9898
"normalize-package-data": "^6.0.0",
9999
"npm-audit-report": "^5.0.0",
100-
"npm-install-checks": "^6.2.0",
100+
"npm-install-checks": "^6.3.0",
101101
"npm-package-arg": "^11.0.1",
102102
"npm-pick-manifest": "^9.0.0",
103103
"npm-profile": "^9.0.0",

0 commit comments

Comments
 (0)