Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2021-10-13 21:03:05 +0300
committernlf <quitlahok@gmail.com>2021-10-14 23:12:38 +0300
commitfbc5a3d08231176b9d8a7b9dd3371fb40ba6abc9 (patch)
tree2b5caa62ba9d7f60b187b8181f7bc5c07224df61 /node_modules
parentae4bf013d06d84b8600937a28cc7b4c4034f571c (diff)
deps: @npmcli/ci-detect@1.4.0
PR-URL: https://github.com/npm/cli/pull/3889 Credit: @wraithgar Close: #3889 Reviewed-by: @nlf
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/@npmcli/ci-detect/index.js6
-rw-r--r--node_modules/@npmcli/ci-detect/package.json2
2 files changed, 7 insertions, 1 deletions
diff --git a/node_modules/@npmcli/ci-detect/index.js b/node_modules/@npmcli/ci-detect/index.js
index 6a60606ff..df9318d65 100644
--- a/node_modules/@npmcli/ci-detect/index.js
+++ b/node_modules/@npmcli/ci-detect/index.js
@@ -24,12 +24,18 @@ module.exports = () =>
: process.env.NOW_GITHUB_DEPLOYMENT ? 'now-github'
: process.env.GITLAB_DEPLOYMENT ? 'now-gitlab'
: process.env.BITBUCKET_DEPLOYMENT ? 'now-bitbucket'
+ : process.env.BITBUCKET_BUILD_NUMBER ? 'bitbucket-pipelines'
: process.env.NOW_BUILDER ? 'now'
+ : process.env.VERCEL_GITHUB_DEPLOYMENT ? 'vercel-github'
+ : process.env.VERCEL_GITLAB_DEPLOYMENT ? 'vercel-gitlab'
+ : process.env.VERCEL_BITBUCKET_DEPLOYMENT ? 'vercel-bitbucket'
+ : process.env.VERCEL_URL ? 'vercel'
: process.env.MAGNUM ? 'magnum'
: process.env.NEVERCODE ? 'nevercode'
: process.env.RENDER ? 'render'
: process.env.SAIL_CI ? 'sail'
: process.env.SHIPPABLE ? 'shippable'
+ : process.env.TEAMCITY_VERSION ? 'teamcity'
// codeship and a few others
: process.env.CI_NAME ? process.env.CI_NAME
// heroku doesn't set envs other than node in a heroku-specific location
diff --git a/node_modules/@npmcli/ci-detect/package.json b/node_modules/@npmcli/ci-detect/package.json
index 89dec0ccc..1c01f7a9f 100644
--- a/node_modules/@npmcli/ci-detect/package.json
+++ b/node_modules/@npmcli/ci-detect/package.json
@@ -1,6 +1,6 @@
{
"name": "@npmcli/ci-detect",
- "version": "1.3.0",
+ "version": "1.4.0",
"description": "Detect what kind of CI environment the program is in",
"author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
"license": "ISC",