Skip to content

Commit 0e6c28b

Browse files
authoredDec 7, 2022
deps: ci-info@3.7.0 (#5934)
1 parent 0a3fe00 commit 0e6c28b

File tree

7 files changed

+34
-18
lines changed

7 files changed

+34
-18
lines changed
 

‎node_modules/ci-info/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2021 Thomas Watson Steen
3+
Copyright (c) 2016-2022 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.d.ts

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This file is generated at pre-commit by running `node create-typings.js`.
2+
13
/**
24
* Returns a boolean. Will be `true` if the code is running on a CI server,
35
* otherwise `false`.
@@ -24,47 +26,49 @@ export const isPR: boolean | null;
2426
*/
2527
export const name: string | null;
2628

29+
export const APPCIRCLE: boolean;
2730
export const APPVEYOR: boolean;
31+
export const CODEBUILD: boolean;
2832
export const AZURE_PIPELINES: boolean;
29-
export const APPCIRCLE: boolean;
3033
export const BAMBOO: boolean;
3134
export const BITBUCKET: boolean;
3235
export const BITRISE: boolean;
3336
export const BUDDY: boolean;
3437
export const BUILDKITE: boolean;
3538
export const CIRCLE: boolean;
3639
export const CIRRUS: boolean;
37-
export const CODEBUILD: boolean;
38-
export const CODEMAGIC: boolean;
3940
export const CODEFRESH: boolean;
41+
export const CODEMAGIC: boolean;
4042
export const CODESHIP: boolean;
4143
export const DRONE: boolean;
4244
export const DSARI: boolean;
4345
export const EAS: boolean;
44-
export const GERRIT: boolean;
4546
export const GITHUB_ACTIONS: boolean;
4647
export const GITLAB: boolean;
4748
export const GOCD: boolean;
4849
export const GOOGLE_CLOUD_BUILD: boolean;
50+
export const LAYERCI: boolean;
51+
export const GERRIT: boolean;
4952
export const HEROKU: boolean;
5053
export const HUDSON: boolean;
5154
export const JENKINS: boolean;
52-
export const LAYERCI: boolean;
5355
export const MAGNUM: boolean;
5456
export const NETLIFY: boolean;
5557
export const NEVERCODE: boolean;
58+
export const RELEASEHUB: boolean;
5659
export const RENDER: boolean;
5760
export const SAIL: boolean;
58-
export const SEMAPHORE: boolean;
5961
export const SCREWDRIVER: boolean;
62+
export const SEMAPHORE: boolean;
6063
export const SHIPPABLE: boolean;
6164
export const SOLANO: boolean;
65+
export const SOURCEHUT: boolean;
6266
export const STRIDER: boolean;
6367
export const TASKCLUSTER: boolean;
6468
export const TEAMCITY: boolean;
6569
export const TRAVIS: boolean;
6670
export const VERCEL: boolean;
6771
export const APPCENTER: boolean;
72+
export const WOODPECKER: boolean;
6873
export const XCODE_CLOUD: boolean;
6974
export const XCODE_SERVER: boolean;
70-
export const WOODPECKER: boolean;

‎node_modules/ci-info/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ci-info",
3-
"version": "3.6.1",
3+
"version": "3.7.0",
44
"description": "Get details about the current Continuous Integration environment",
55
"main": "index.js",
66
"typings": "index.d.ts",
@@ -24,10 +24,12 @@
2424
],
2525
"scripts": {
2626
"lint:fix": "standard --fix",
27-
"test": "standard && node test.js"
27+
"test": "standard && node test.js",
28+
"prepare": "husky install"
2829
},
2930
"devDependencies": {
3031
"clear-module": "^4.1.2",
32+
"husky": "^8.0.2",
3133
"standard": "^17.0.0",
3234
"tape": "^5.6.1"
3335
},

‎node_modules/ci-info/vendors.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,11 @@
161161
"env": "NEVERCODE",
162162
"pr": { "env": "NEVERCODE_PULL_REQUEST", "ne": "false" }
163163
},
164+
{
165+
"name": "ReleaseHub",
166+
"constant": "RELEASEHUB",
167+
"env": "RELEASE_BUILD_ID"
168+
},
164169
{
165170
"name": "Render",
166171
"constant": "RENDER",
@@ -197,6 +202,11 @@
197202
"env": "TDDIUM",
198203
"pr": "TDDIUM_PR_ID"
199204
},
205+
{
206+
"name": "Sourcehut",
207+
"constant": "SOURCEHUT",
208+
"env": { "CI_NAME": "sourcehut" }
209+
},
200210
{
201211
"name": "Strider CD",
202212
"constant": "STRIDER",
@@ -221,7 +231,7 @@
221231
{
222232
"name": "Vercel",
223233
"constant": "VERCEL",
224-
"env": { "any": ["NOW_BUILDER", "VERCEL_URL"] }
234+
"env": { "any": ["NOW_BUILDER", "VERCEL"] }
225235
},
226236
{
227237
"name": "Visual Studio App Center",

‎package-lock.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"archy": "~1.0.0",
9696
"cacache": "^17.0.3",
9797
"chalk": "^4.1.2",
98-
"ci-info": "^3.6.1",
98+
"ci-info": "^3.7.0",
9999
"cli-columns": "^4.0.0",
100100
"cli-table3": "^0.6.3",
101101
"columnify": "^1.6.0",
@@ -3300,9 +3300,9 @@
33003300
}
33013301
},
33023302
"node_modules/ci-info": {
3303-
"version": "3.6.1",
3304-
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.6.1.tgz",
3305-
"integrity": "sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==",
3303+
"version": "3.7.0",
3304+
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.0.tgz",
3305+
"integrity": "sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==",
33063306
"inBundle": true,
33073307
"engines": {
33083308
"node": ">=8"
@@ -15257,7 +15257,7 @@
1525715257
"@npmcli/arborist": "^6.1.4",
1525815258
"@npmcli/run-script": "^6.0.0",
1525915259
"chalk": "^4.1.0",
15260-
"ci-info": "^3.6.1",
15260+
"ci-info": "^3.7.0",
1526115261
"npm-package-arg": "^10.1.0",
1526215262
"npmlog": "^7.0.1",
1526315263
"pacote": "^15.0.7",

‎package.json

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

‎workspaces/libnpmexec/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@npmcli/arborist": "^6.1.4",
6565
"@npmcli/run-script": "^6.0.0",
6666
"chalk": "^4.1.0",
67-
"ci-info": "^3.6.1",
67+
"ci-info": "^3.7.0",
6868
"npm-package-arg": "^10.1.0",
6969
"npmlog": "^7.0.1",
7070
"pacote": "^15.0.7",

0 commit comments

Comments
 (0)
Please sign in to comment.