Skip to content

Commit 3d91734

Browse files
uses uuid instead of node-uuid (#58)
1 parent 53702e8 commit 3d91734

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/util/makeErrorFunction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22
var format = require("util").format;
3-
var uuid = require("node-uuid");
3+
var uuid = require("uuid");
44

55
module.exports = function makeErrorFunction(errorCodeName, errorCodeSpec) {
66
if (!errorCodeName) {

lib/util/parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"use strict";
2-
var uuid = require("node-uuid");
2+
var uuid = require("uuid");
33
var getSerializableError = require("./getSerializableError");
44

55
module.exports = function parseError(err) {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"node": ">=0.10.0"
1414
},
1515
"dependencies": {
16+
"moduleconfig": "^2.0.0",
1617
"underscore": "^1.8.3",
17-
"node-uuid": "^1.4.7",
18-
"moduleconfig": "^2.0.0"
18+
"uuid": "^3.0.1"
1919
},
2020
"scripts": {
2121
"test": "istanbul cover _mocha",

0 commit comments

Comments
 (0)