- upgrade dev dependencies

```
 @types/node                       ^20.14.12  →  ^22.1.0
 eslint-plugin-jest                  ^28.6.0  →  ^28.7.0
 ts-jest                             ^29.2.3  →  ^29.2.4
 ```
This commit is contained in:
Mike Penz
2024-08-06 07:38:48 +00:00
committed by GitHub
parent 3d1075579e
commit b8e8a78b66
4 changed files with 148 additions and 200 deletions
Generated Vendored
+3 -1
View File
@@ -13645,6 +13645,8 @@ function useColors() {
return false;
}
let m;
// Is webkit? http://stackoverflow.com/a/16459606/376773
// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632
return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||
@@ -13652,7 +13654,7 @@ function useColors() {
(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||
// Is firefox >= v31?
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) ||
(typeof navigator !== 'undefined' && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31) ||
// Double check webkit in userAgent just in case we are in a worker
(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/));
}