full site update

This commit is contained in:
2025-07-24 18:46:24 +02:00
parent bfe2b90d8d
commit 37a6e0ab31
6912 changed files with 540482 additions and 361712 deletions

4
node_modules/ci-info/CHANGELOG.md generated vendored
View File

@@ -1,5 +1,9 @@
# Changelog
## v4.3.0
- support Cloudflare workers [e438266](https://github.com/watson/ci-info/commit/e438266)
## v4.2.0
- support Cloudflare Pages [75c9de8](https://github.com/watson/ci-info/commit/75c9de8)

1
node_modules/ci-info/README.md generated vendored
View File

@@ -47,6 +47,7 @@ Officially supported CI servers:
| [CircleCI](http://circleci.com) | `ci.CIRCLE` | ✅ |
| [Cirrus CI](https://cirrus-ci.org) | `ci.CIRRUS` | ✅ |
| [Cloudflare Pages](https://pages.cloudflare.com/) | `ci.CLOUDFLARE_PAGES` | 🚫 |
| [Cloudflare Workers](https://pages.cloudflare.com/) | `ci.CLOUDFLARE_WORKERS` | 🚫 |
| [Codefresh](https://codefresh.io/) | `ci.CODEFRESH` | ✅ |
| [Codeship](https://codeship.com) | `ci.CODESHIP` | 🚫 |
| [Drone](https://drone.io) | `ci.DRONE` | ✅ |

1
node_modules/ci-info/index.d.ts generated vendored
View File

@@ -45,6 +45,7 @@ export const BUILDKITE: boolean;
export const CIRCLE: boolean;
export const CIRRUS: boolean;
export const CLOUDFLARE_PAGES: boolean;
export const CLOUDFLARE_WORKERS: boolean;
export const CODEFRESH: boolean;
export const CODEMAGIC: boolean;
export const CODESHIP: boolean;

2
node_modules/ci-info/index.js generated vendored
View File

@@ -36,7 +36,7 @@ exports.isCI = !!(
env.CI !== 'false' && // Bypass all checks if CI env is explicitly set to 'false'
(env.BUILD_ID || // Jenkins, Cloudbees
env.BUILD_NUMBER || // Jenkins, TeamCity
env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari, Cloudflare Pages
env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari, Cloudflare Pages/Workers
env.CI_APP_ID || // Appflow
env.CI_BUILD_ID || // Appflow
env.CI_BUILD_NUMBER || // Appflow

5
node_modules/ci-info/package.json generated vendored
View File

@@ -1,6 +1,6 @@
{
"name": "ci-info",
"version": "4.2.0",
"version": "4.3.0",
"description": "Get details about the current Continuous Integration environment",
"main": "index.js",
"typings": "index.d.ts",
@@ -36,6 +36,7 @@
"CHANGELOG.md"
],
"scripts": {
"build": "node sort-vendors.js && node create-typings.js",
"lint:fix": "standard --fix",
"test": "standard && node test.js",
"prepare": "husky install || true"
@@ -43,7 +44,7 @@
"devDependencies": {
"clear-module": "^4.1.2",
"husky": "^9.1.7",
"publint": "^0.3.8",
"publint": "^0.3.12",
"standard": "^17.1.2",
"tape": "^5.9.0"
},

5
node_modules/ci-info/vendors.json generated vendored
View File

@@ -90,6 +90,11 @@
"constant": "CLOUDFLARE_PAGES",
"env": "CF_PAGES"
},
{
"name": "Cloudflare Workers",
"constant": "CLOUDFLARE_WORKERS",
"env": "WORKERS_CI"
},
{
"name": "Codefresh",
"constant": "CODEFRESH",