Skip to content

Commit 5c84a99

Browse files
committed
1 parent fc5332f commit 5c84a99

File tree

6 files changed

+24
-11
lines changed

6 files changed

+24
-11
lines changed

node_modules/ci-info/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2022 Thomas Watson Steen
3+
Copyright (c) 2016-2023 Thomas Watson Steen
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

node_modules/ci-info/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ vendors.forEach(function (vendor) {
5454
})
5555

5656
exports.isCI = !!(
57-
env.BUILD_ID || // Jenkins, Cloudbees
57+
env.CI !== 'false' && // Bypass all checks if CI env is explicitly set to 'false'
58+
(env.BUILD_ID || // Jenkins, Cloudbees
5859
env.BUILD_NUMBER || // Jenkins, TeamCity
5960
env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari
6061
env.CI_APP_ID || // Appflow
@@ -64,7 +65,7 @@ exports.isCI = !!(
6465
env.CONTINUOUS_INTEGRATION || // Travis CI, Cirrus CI
6566
env.RUN_ID || // TaskCluster, dsari
6667
exports.name ||
67-
false
68+
false)
6869
)
6970

7071
function checkEnv (obj) {

node_modules/ci-info/package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ci-info",
3-
"version": "3.7.0",
3+
"version": "3.7.1",
44
"description": "Get details about the current Continuous Integration environment",
55
"main": "index.js",
66
"typings": "index.d.ts",
@@ -22,6 +22,12 @@
2222
"index.d.ts",
2323
"CHANGELOG.md"
2424
],
25+
"funding": [
26+
{
27+
"type": "github",
28+
"url": "https://github.com/sponsors/sibiraj-s"
29+
}
30+
],
2531
"scripts": {
2632
"lint:fix": "standard --fix",
2733
"test": "standard && node test.js",

package-lock.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"archy": "~1.0.0",
9595
"cacache": "^17.0.4",
9696
"chalk": "^4.1.2",
97-
"ci-info": "^3.7.0",
97+
"ci-info": "^3.7.1",
9898
"cli-columns": "^4.0.0",
9999
"cli-table3": "^0.6.3",
100100
"columnify": "^1.6.0",
@@ -3344,9 +3344,15 @@
33443344
}
33453345
},
33463346
"node_modules/ci-info": {
3347-
"version": "3.7.0",
3348-
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.0.tgz",
3349-
"integrity": "sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==",
3347+
"version": "3.7.1",
3348+
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.1.tgz",
3349+
"integrity": "sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==",
3350+
"funding": [
3351+
{
3352+
"type": "github",
3353+
"url": "https://github.com/sponsors/sibiraj-s"
3354+
}
3355+
],
33503356
"inBundle": true,
33513357
"engines": {
33523358
"node": ">=8"
@@ -14567,7 +14573,7 @@
1456714573
"@npmcli/arborist": "^6.2.1",
1456814574
"@npmcli/run-script": "^6.0.0",
1456914575
"chalk": "^4.1.0",
14570-
"ci-info": "^3.7.0",
14576+
"ci-info": "^3.7.1",
1457114577
"npm-package-arg": "^10.1.0",
1457214578
"npmlog": "^7.0.1",
1457314579
"pacote": "^15.0.8",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"archy": "~1.0.0",
6363
"cacache": "^17.0.4",
6464
"chalk": "^4.1.2",
65-
"ci-info": "^3.7.0",
65+
"ci-info": "^3.7.1",
6666
"cli-columns": "^4.0.0",
6767
"cli-table3": "^0.6.3",
6868
"columnify": "^1.6.0",

workspaces/libnpmexec/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@npmcli/arborist": "^6.2.1",
6565
"@npmcli/run-script": "^6.0.0",
6666
"chalk": "^4.1.0",
67-
"ci-info": "^3.7.0",
67+
"ci-info": "^3.7.1",
6868
"npm-package-arg": "^10.1.0",
6969
"npmlog": "^7.0.1",
7070
"pacote": "^15.0.8",

0 commit comments

Comments
 (0)