Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
Update UUID module
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriangalliat committed Apr 3, 2017
1 parent 4e4fc0b commit 3f3e454
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"dependencies": {
"cli-table2": "^0.2.0",
"node-uuid": "^1.4.8",
"numeral": "^2.0.6",
"stdbot": "^0.4.0"
"stdbot": "^0.4.0",
"uuid": "^3.0.1"
}
}
2 changes: 1 addition & 1 deletion chat/src/actions/challenge.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const uuid = require('node-uuid')
const uuid = require('uuid')

const getMatchId = message =>
message.thread || uuid.v4()
Expand Down
2 changes: 1 addition & 1 deletion chat/src/actions/forcechallenge.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const uuid = require('node-uuid')
const uuid = require('uuid')
const config = require('../../config')

const isAdmin = user =>
Expand Down
2 changes: 1 addition & 1 deletion chat/src/actions/openchallenge.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const uuid = require('node-uuid')
const uuid = require('uuid')

const getMatchId = message =>
message.thread || uuid.v4()
Expand Down

0 comments on commit 3f3e454

Please sign in to comment.