Skip to content

Commit

Permalink
Merge pull request #199 from antialias/defunctzombie-uuid
Browse files Browse the repository at this point in the history
using defunctzombie fork of uuid because node-uuid has been abandoned by developer
  • Loading branch information
brycekahle committed Apr 18, 2016
2 parents f57cdfc + fe31a00 commit 989a846
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 @@ -18,7 +18,7 @@
],
"dependencies": {
"faye-websocket": "^0.10.0",
"node-uuid": "^1.4.1"
"uuid": "^2.0.2"
},
"devDependencies": {
"coffee-script": "^1.8.0"
Expand Down
2 changes: 1 addition & 1 deletion src/transport.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# ***** END LICENSE BLOCK *****

stream = require('stream')
uuid = require('node-uuid')
uuid = require('uuid')
utils = require('./utils')

class Transport
Expand Down

0 comments on commit 989a846

Please sign in to comment.