Skip to content

Commit

Permalink
deps: supports-color@9.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed Jul 18, 2023
1 parent f45498b commit 24f5a8b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion node_modules/supports-color/index.js
Expand Up @@ -112,7 +112,7 @@ function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
}

if ('CI' in env) {
if ('GITHUB_ACTIONS' in env) {
if ('GITHUB_ACTIONS' in env || 'GITEA_ACTIONS' in env) {
return 3;
}

Expand Down
11 changes: 5 additions & 6 deletions node_modules/supports-color/package.json
@@ -1,6 +1,6 @@
{
"name": "supports-color",
"version": "9.3.1",
"version": "9.4.0",
"description": "Detect whether a terminal supports color",
"license": "MIT",
"repository": "chalk/supports-color",
Expand All @@ -20,7 +20,7 @@
},
"scripts": {
"//test": "xo && ava && tsd",
"test": "xo && tsd"
"test": "tsd"
},
"files": [
"index.js",
Expand Down Expand Up @@ -51,11 +51,10 @@
"16m"
],
"devDependencies": {
"@types/node": "^16.11.7",
"ava": "^3.15.0",
"@types/node": "^20.3.2",
"ava": "^5.3.1",
"import-fresh": "^3.3.0",
"tsd": "^0.18.0",
"typescript": "^4.4.3",
"xo": "^0.49.0"
"xo": "^0.54.2"
}
}
8 changes: 4 additions & 4 deletions package-lock.json
Expand Up @@ -146,7 +146,7 @@
"semver": "^7.5.4",
"sigstore": "^1.7.0",
"ssri": "^10.0.4",
"supports-color": "^9.3.1",
"supports-color": "^9.4.0",
"tar": "^6.1.15",
"text-table": "~0.2.0",
"tiny-relative-date": "^1.3.0",
Expand Down Expand Up @@ -12070,9 +12070,9 @@
}
},
"node_modules/supports-color": {
"version": "9.3.1",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.3.1.tgz",
"integrity": "sha512-knBY82pjmnIzK3NifMo3RxEIRD9E0kIzV4BKcyTZ9+9kWgLMxd4PrsTSMoFQUabgRBbF8KOLRDCyKgNV+iK44Q==",
"version": "9.4.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
"integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==",
"inBundle": true,
"engines": {
"node": ">=12"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -111,7 +111,7 @@
"semver": "^7.5.4",
"sigstore": "^1.7.0",
"ssri": "^10.0.4",
"supports-color": "^9.3.1",
"supports-color": "^9.4.0",
"tar": "^6.1.15",
"text-table": "~0.2.0",
"tiny-relative-date": "^1.3.0",
Expand Down

0 comments on commit 24f5a8b

Please sign in to comment.