Skip to content

Commit

Permalink
chore: regenerate lockfile
Browse files Browse the repository at this point in the history
For some reason, the lockfile was not in sync anymore with the
package.json file:

> `npm ci` can only install packages when your package.json and package-lock.json or npm-shrinkwrap.json are in sync.

That may be linked to a new version of Node.js (v16.15.1).
darrachequesne committed Jun 26, 2022

Verified

This commit was signed with the committer’s verified signature.
darrachequesne Damien Arrachequesne
1 parent f0350a0 commit 8c659bc
Showing 3 changed files with 6,341 additions and 5,320 deletions.
2 changes: 1 addition & 1 deletion lib/socket.ts
Original file line number Diff line number Diff line change
@@ -168,7 +168,7 @@ export class Socket<
...args: EventParams<EmitEvents, Ev>
): this {
if (RESERVED_EVENTS.hasOwnProperty(ev)) {
throw new Error('"' + ev + '" is a reserved event name');
throw new Error('"' + ev.toString() + '" is a reserved event name');
}

args.unshift(ev);
11,656 changes: 6,337 additions & 5,319 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -118,5 +118,8 @@
},
"browser": {
"./test/node.ts": false
},
"overrides": {
"@types/estree": "0.0.52"
}
}

0 comments on commit 8c659bc

Please sign in to comment.