Skip to content

Commit

Permalink
deps: @npmcli/ci-detect@3.0.0 (#5639)
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar authored Oct 4, 2022
1 parent 1ebbb44 commit 8b072dc
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 23 deletions.
1 change: 1 addition & 0 deletions node_modules/@npmcli/ci-detect/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ module.exports = () =>
: process.env.TRAVIS ? 'travis-ci'
// aws CodeBuild/CodePipeline
: process.env.CODEBUILD_SRC_DIR ? 'aws-codebuild'
: process.env.CI === 'woodpecker' ? 'woodpecker'
: process.env.CI === 'true' || process.env.CI === '1' ? 'custom'
// Google Cloud Build - it sets almost nothing
: process.env.BUILDER_OUTPUT ? 'builder'
Expand Down
35 changes: 19 additions & 16 deletions node_modules/@npmcli/ci-detect/package.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,44 @@
{
"name": "@npmcli/ci-detect",
"version": "2.0.0",
"version": "3.0.0",
"description": "Detect what kind of CI environment the program is in",
"author": "GitHub Inc.",
"license": "ISC",
"main": "./lib",
"scripts": {
"test": "tap",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"lint": "eslint '**/*.js'",
"postlint": "npm-template-check",
"template-copy": "npm-template-copy --force",
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"lintfix": "npm run lint -- --fix",
"snap": "tap",
"posttest": "npm run lint"
"posttest": "npm run lint",
"template-oss-apply": "template-oss-apply --force"
},
"tap": {
"check-coverage": true
"check-coverage": true,
"nyc-arg": [
"--exclude",
"tap-snapshots/**"
]
},
"devDependencies": {
"@npmcli/template-oss": "^2.7.1",
"tap": "^15.1.6"
"@npmcli/eslint-config": "^3.0.1",
"@npmcli/template-oss": "4.4.4",
"tap": "^16.0.1"
},
"files": [
"bin",
"lib"
"bin/",
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/npm/ci-detect.git"
"url": "https://github.com/npm/ci-detect.git"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16"
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
},
"templateOSS": {
"version": "2.7.1"
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.4.4"
}
}
11 changes: 6 additions & 5 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/arborist": "^6.0.0-pre.3",
"@npmcli/ci-detect": "^2.0.0",
"@npmcli/ci-detect": "^3.0.0",
"@npmcli/config": "^4.2.1",
"@npmcli/fs": "^2.1.0",
"@npmcli/map-workspaces": "^2.0.3",
Expand Down Expand Up @@ -2138,11 +2138,12 @@
"link": true
},
"node_modules/@npmcli/ci-detect": {
"version": "2.0.0",
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-3.0.0.tgz",
"integrity": "sha512-d6eGMbZ2j6n2b1KpGNbTsKNpCe3NU7xe7stzeXu6BJyLbMZ/FGHnSuwozcHEckGRKF06RO+Z8FpHg7nAbBmuUw==",
"inBundle": true,
"license": "ISC",
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16"
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
}
},
"node_modules/@npmcli/config": {
Expand Down Expand Up @@ -13930,7 +13931,7 @@
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^6.0.0-pre.3",
"@npmcli/ci-detect": "^2.0.0",
"@npmcli/ci-detect": "^3.0.0",
"@npmcli/fs": "^2.1.1",
"@npmcli/run-script": "^4.2.0",
"chalk": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/arborist": "^6.0.0-pre.3",
"@npmcli/ci-detect": "^2.0.0",
"@npmcli/ci-detect": "^3.0.0",
"@npmcli/config": "^4.2.1",
"@npmcli/fs": "^2.1.0",
"@npmcli/map-workspaces": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmexec/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"dependencies": {
"@npmcli/arborist": "^6.0.0-pre.3",
"@npmcli/ci-detect": "^2.0.0",
"@npmcli/ci-detect": "^3.0.0",
"@npmcli/fs": "^2.1.1",
"@npmcli/run-script": "^4.2.0",
"chalk": "^4.1.0",
Expand Down

0 comments on commit 8b072dc

Please sign in to comment.