Skip to content

Commit df7484c

Browse files
authored
fix(deps): update debug to 4.3.6 (#1224)
1 parent 257570a commit df7484c

File tree

9 files changed

+35
-23
lines changed

9 files changed

+35
-23
lines changed

dist/index.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48689,14 +48689,16 @@ function useColors() {
4868948689
return false;
4869048690
}
4869148691

48692+
let m;
48693+
4869248694
// Is webkit? http://stackoverflow.com/a/16459606/376773
4869348695
// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632
4869448696
return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||
4869548697
// Is firebug? http://stackoverflow.com/a/398120/376773
4869648698
(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||
4869748699
// Is firefox >= v31?
4869848700
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
48699-
(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) ||
48701+
(typeof navigator !== 'undefined' && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31) ||
4870048702
// Double check webkit in userAgent just in case we are in a worker
4870148703
(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/));
4870248704
}
@@ -49325,11 +49327,11 @@ function getDate() {
4932549327
}
4932649328

4932749329
/**
49328-
* Invokes `util.format()` with the specified arguments and writes to stderr.
49330+
* Invokes `util.formatWithOptions()` with the specified arguments and writes to stderr.
4932949331
*/
4933049332

4933149333
function log(...args) {
49332-
return process.stderr.write(util.format(...args) + '\n');
49334+
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\n');
4933349335
}
4933449336

4933549337
/**

examples/install-command/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
},
1212
"dependencies": {
1313
"arg": "5.0.0",
14-
"debug": "4.3.4"
14+
"debug": "4.3.6"
1515
}
1616
}

examples/install-command/yarn.lock

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ dayjs@^1.10.4:
353353
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.9.tgz#9ca491933fadd0a60a2c19f6c237c03517d71d1a"
354354
integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==
355355

356-
debug@4.3.4, debug@^4.1.1, debug@^4.3.4:
357-
version "4.3.4"
358-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
359-
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
356+
debug@4.3.6:
357+
version "4.3.6"
358+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
359+
integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
360360
dependencies:
361361
ms "2.1.2"
362362

@@ -367,6 +367,13 @@ debug@^3.1.0:
367367
dependencies:
368368
ms "^2.1.1"
369369

370+
debug@^4.1.1, debug@^4.3.4:
371+
version "4.3.4"
372+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
373+
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
374+
dependencies:
375+
ms "2.1.2"
376+
370377
delayed-stream@~1.0.0:
371378
version "1.0.0"
372379
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"

examples/install-only/package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/install-only/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"private": true,
99
"dependencies": {
1010
"arg": "5.0.0",
11-
"debug": "4.3.4"
11+
"debug": "4.3.6"
1212
},
1313
"devDependencies": {
1414
"cypress": "13.13.1"

examples/wait-on/package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/wait-on/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"private": true,
1818
"dependencies": {
1919
"arg": "5.0.0",
20-
"debug": "4.3.4"
20+
"debug": "4.3.6"
2121
},
2222
"devDependencies": {
2323
"cypress": "13.13.1"

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@actions/io": "1.1.3",
3939
"@octokit/core": "4.2.0",
4040
"argument-vector": "1.0.2",
41-
"debug": "4.3.4",
41+
"debug": "4.3.6",
4242
"find-yarn-workspace-root": "2.0.0",
4343
"got": "11.8.6",
4444
"hasha": "5.2.2",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy