Fix CI
This commit is contained in:
parent
29b856959f
commit
df0e69df51
2 changed files with 3 additions and 2 deletions
|
|
@ -66,7 +66,8 @@
|
||||||
"unicorn/prefer-string-slice": "off",
|
"unicorn/prefer-string-slice": "off",
|
||||||
"@typescript-eslint/consistent-type-imports": "off",
|
"@typescript-eslint/consistent-type-imports": "off",
|
||||||
"@typescript-eslint/consistent-type-exports": "off",
|
"@typescript-eslint/consistent-type-exports": "off",
|
||||||
"@typescript-eslint/consistent-type-definitions": "off"
|
"@typescript-eslint/consistent-type-definitions": "off",
|
||||||
|
"unicorn/expiring-todo-comments": "off"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"c8": {
|
"c8": {
|
||||||
|
|
|
||||||
2
source/vendor/supports-color/browser.js
vendored
2
source/vendor/supports-color/browser.js
vendored
|
|
@ -3,7 +3,7 @@
|
||||||
const level = (() => {
|
const level = (() => {
|
||||||
if (navigator.userAgentData) {
|
if (navigator.userAgentData) {
|
||||||
const brand = navigator.userAgentData.brands.find(({brand}) => brand === 'Chromium');
|
const brand = navigator.userAgentData.brands.find(({brand}) => brand === 'Chromium');
|
||||||
if (brand?.version > 93) {
|
if (brand && brand.version > 93) {
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue