Skip to content

Commit daea981

Browse files
committed
1 parent 39ad47d commit daea981

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

node_modules/ci-info/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ exports.isCI = !!(
3636
env.CI !== 'false' && // Bypass all checks if CI env is explicitly set to 'false'
3737
(env.BUILD_ID || // Jenkins, Cloudbees
3838
env.BUILD_NUMBER || // Jenkins, TeamCity
39-
env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari, Cloudflare Pages
39+
env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari, Cloudflare Pages/Workers
4040
env.CI_APP_ID || // Appflow
4141
env.CI_BUILD_ID || // Appflow
4242
env.CI_BUILD_NUMBER || // Appflow

node_modules/ci-info/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ci-info",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "Get details about the current Continuous Integration environment",
55
"main": "index.js",
66
"typings": "index.d.ts",
@@ -36,14 +36,15 @@
3636
"CHANGELOG.md"
3737
],
3838
"scripts": {
39+
"build": "node sort-vendors.js && node create-typings.js",
3940
"lint:fix": "standard --fix",
4041
"test": "standard && node test.js",
4142
"prepare": "husky install || true"
4243
},
4344
"devDependencies": {
4445
"clear-module": "^4.1.2",
4546
"husky": "^9.1.7",
46-
"publint": "^0.3.8",
47+
"publint": "^0.3.12",
4748
"standard": "^17.1.2",
4849
"tape": "^5.9.0"
4950
},

node_modules/ci-info/vendors.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@
9090
"constant": "CLOUDFLARE_PAGES",
9191
"env": "CF_PAGES"
9292
},
93+
{
94+
"name": "Cloudflare Workers",
95+
"constant": "CLOUDFLARE_WORKERS",
96+
"env": "WORKERS_CI"
97+
},
9398
{
9499
"name": "Codefresh",
95100
"constant": "CODEFRESH",

package-lock.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"archy": "~1.0.0",
9999
"cacache": "^19.0.1",
100100
"chalk": "^5.4.1",
101-
"ci-info": "^4.2.0",
101+
"ci-info": "^4.3.0",
102102
"cli-columns": "^4.0.0",
103103
"fastest-levenshtein": "^1.0.16",
104104
"fs-minipass": "^3.0.3",
@@ -6143,9 +6143,9 @@
61436143
}
61446144
},
61456145
"node_modules/ci-info": {
6146-
"version": "4.2.0",
6147-
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.2.0.tgz",
6148-
"integrity": "sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==",
6146+
"version": "4.3.0",
6147+
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.0.tgz",
6148+
"integrity": "sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==",
61496149
"funding": [
61506150
{
61516151
"type": "github",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"archy": "~1.0.0",
6666
"cacache": "^19.0.1",
6767
"chalk": "^5.4.1",
68-
"ci-info": "^4.2.0",
68+
"ci-info": "^4.3.0",
6969
"cli-columns": "^4.0.0",
7070
"fastest-levenshtein": "^1.0.16",
7171
"fs-minipass": "^3.0.3",

0 commit comments

Comments
 (0)