Skip to content

Commit d93f70c

Browse files
committedMay 17, 2023
deps: signal-exit@4.0.2
1 parent 19214b5 commit d93f70c

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed
 

‎node_modules/signal-exit/dist/cjs/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ class Emitter {
3434
id = Math.random();
3535
constructor() {
3636
if (global[kExitEmitter]) {
37-
console.error('reusing global emitter');
3837
return global[kExitEmitter];
3938
}
4039
ObjectDefineProperty(global, kExitEmitter, {

‎node_modules/signal-exit/dist/mjs/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ class Emitter {
3030
id = Math.random();
3131
constructor() {
3232
if (global[kExitEmitter]) {
33-
console.error('reusing global emitter');
3433
return global[kExitEmitter];
3534
}
3635
ObjectDefineProperty(global, kExitEmitter, {

‎node_modules/signal-exit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "signal-exit",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "when you want to fire an event no matter how a process exits.",
55
"main": "./dist/cjs/index.js",
66
"module": "./dist/mjs/index.js",

‎package-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11427,9 +11427,9 @@
1142711427
}
1142811428
},
1142911429
"node_modules/signal-exit": {
11430-
"version": "4.0.1",
11431-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz",
11432-
"integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==",
11430+
"version": "4.0.2",
11431+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz",
11432+
"integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==",
1143311433
"inBundle": true,
1143411434
"engines": {
1143511435
"node": ">=14"

0 commit comments

Comments
 (0)
Please sign in to comment.