Skip to content

Commit

Permalink
Upgrade uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydwatkin committed Dec 28, 2016
1 parent 3b4cb73 commit e66467b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/base.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* @flow */
'use strict'

const uuid = require('node-uuid')
const uuidV4 = require('uuid/v4')

class Base {

Expand Down Expand Up @@ -79,7 +79,7 @@ class Base {
}
}
++Base.prototype.id.counter
return uuid.v4()
return uuidV4()
}

_parseError (stanza) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "index.js",
"dependencies": {
"debounce": "^1.0.0",
"node-uuid": "^1.4.7",
"node-xmpp-client": "^3.0.0"
"node-xmpp-client": "^3.0.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"coveralls": "^2.11.4",
Expand Down

0 comments on commit e66467b

Please sign in to comment.