Skip to content

Commit 941d0d7

Browse files
committedJun 27, 2024
deps: debug@4.3.5
1 parent 8b8ce7a commit 941d0d7

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed
 

‎node_modules/debug/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "debug",
3-
"version": "4.3.4",
3+
"version": "4.3.5",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/debug-js/debug.git"
@@ -16,7 +16,7 @@
1616
"LICENSE",
1717
"README.md"
1818
],
19-
"author": "Josh Junon <josh.junon@protonmail.com>",
19+
"author": "Josh Junon (https://github.com/qix-)",
2020
"contributors": [
2121
"TJ Holowaychuk <tj@vision-media.ca>",
2222
"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)",
@@ -26,7 +26,7 @@
2626
"scripts": {
2727
"lint": "xo",
2828
"test": "npm run test:node && npm run test:browser && npm run lint",
29-
"test:node": "istanbul cover _mocha -- test.js",
29+
"test:node": "istanbul cover _mocha -- test.js test.node.js",
3030
"test:browser": "karma start --single-run",
3131
"test:coverage": "cat ./coverage/lcov.info | coveralls"
3232
},
@@ -44,6 +44,7 @@
4444
"karma-mocha": "^1.3.0",
4545
"mocha": "^5.2.0",
4646
"mocha-lcov-reporter": "^1.2.0",
47+
"sinon": "^14.0.0",
4748
"xo": "^0.23.0"
4849
},
4950
"peerDependenciesMeta": {

‎node_modules/debug/src/node.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,11 @@ function getDate() {
187187
}
188188

189189
/**
190-
* Invokes `util.format()` with the specified arguments and writes to stderr.
190+
* Invokes `util.formatWithOptions()` with the specified arguments and writes to stderr.
191191
*/
192192

193193
function log(...args) {
194-
return process.stderr.write(util.format(...args) + '\n');
194+
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\n');
195195
}
196196

197197
/**

‎package-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4000,9 +4000,9 @@
40004000
}
40014001
},
40024002
"node_modules/debug": {
4003-
"version": "4.3.4",
4004-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
4005-
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
4003+
"version": "4.3.5",
4004+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz",
4005+
"integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==",
40064006
"inBundle": true,
40074007
"license": "MIT",
40084008
"dependencies": {

0 commit comments

Comments
 (0)