Skip to content

Commit de755ab

Browse files
Merge pull request #148 from kuzzleio/uuidUpdate
migrate node-uuid to uuid
2 parents 096244c + 9f6eec9 commit de755ab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"bluebird": "3.4.6",
3131
"bufferutil": "^1.2.1",
32-
"node-uuid": "1.4.7",
32+
"uuid": "3.0.0",
3333
"utf-8-validate": "^1.2.1",
3434
"ws": "^1.1.1"
3535
},

src/kuzzle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var
2-
uuid = require('node-uuid'),
2+
uuid = require('uuid'),
33
KuzzleDataCollection = require('./kuzzleDataCollection'),
44
KuzzleSecurity = require('./security/kuzzleSecurity'),
55
KuzzleMemoryStorage = require('./kuzzleMemoryStorage'),

src/kuzzleRoom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var
2-
uuid = require('node-uuid');
2+
uuid = require('uuid');
33

44
/**
55
* This is a global callback pattern, called by all asynchronous functions of the Kuzzle object.

0 commit comments

Comments
 (0)