Skip to content

Commit

Permalink
replace node-uuid with uuid
Browse files Browse the repository at this point in the history
fixes #101
  • Loading branch information
fippo committed Nov 7, 2017
1 parent 3ffa301 commit 583c716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"version": "1.0.1",
"dependencies": {
"getconfig": "2.1.0",
"node-uuid": "1.2.0",
"socket.io": "1.3.7",
"uuid": "^3.1.0",
"yetify": "0.0.1"
},
"main": "server.js",
Expand Down
2 changes: 1 addition & 1 deletion sockets.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var socketIO = require('socket.io'),
uuid = require('node-uuid'),
uuid = require('uuid/v4'),
crypto = require('crypto');

module.exports = function (server, config) {
Expand Down

0 comments on commit 583c716

Please sign in to comment.