10000 Update dependencies and node version · sockjs/sockjs-node@da1f106 · GitHub
[go: up one dir, main page]

Skip to content

Commit da1f106

Browse files
committed
Update dependencies and node version
1 parent e1673e0 commit da1f106

File tree

5 files changed

+551
-476
lines changed

5 files changed

+551
-476
lines changed

.github/workflows/nodejs.ym EB66 l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [8.x, 10.x, 12.x]
12+
node-version: [10.x, 12.x, 14.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/boron
1+
lts/erbium

lib/sockjs-connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const debug = require('debug')('sockjs:connection');
44
const stream = require('stream');
5-
const uuid = require('uuid/v4');
5+
const { v4: uuid } = require('uuid');
66

77
class SockJSConnection extends stream.Duplex {
88
constructor(session) {

0 commit comments

Comments
 (0)
0