Skip to content

Commit

Permalink
Bump socket.io juuust a bit
Browse files Browse the repository at this point in the history
This solves a minor, but nasty UTF-8 encoding-deconding problem, solved
by socketio/engine.io-parser#81 and released
since socket.io v2.0.0. Maybe the newer version would work too, but I'm
too lazy to check right now.
  • Loading branch information
al42and committed Apr 20, 2020
1 parent 7f9e878 commit cb5c18d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"almond": "~0.3.3",
"raven-js": "^1.1.15",
"requirejs": "~2.3.6",
"socket.io-client": "~1.0.6",
"socket.io-client": "^2.0.0",
"require-handlebars-plugin": "^0.8.1",
"jquery": "~2.1.0",
"backbone": "1.1.2",
Expand Down
4 changes: 2 additions & 2 deletions browser/require.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require.config({
'json': 'node_modules/requirejs-json/json',
'text': 'node_modules/requirejs-text/text',
'underscore': 'node_modules/underscore/underscore',
'socket.io-client': 'node_modules/socket.io-client/socket.io'
'socket.io-client': 'node_modules/socket.io-client/dist/socket.io'
},
hbs: {
disableI18n: true
Expand All @@ -24,6 +24,6 @@ require.config({
},
'underscore': {
exports: '_'
},
}
}
});
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dependencies": {
"engine.io": "^3.4.0",
"mongoose": "^5.9.9",
"socket.io": "^1.0.6",
"socket.io": "^2.0.0",
"winston": "^3.2.1",
"express": "^4.17.1",
"@types/node": "^13.13.0",
Expand Down

0 comments on commit cb5c18d

Please sign in to comment.