Skip to content

Commit

Permalink
uses uuid instead of node-uuid (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanpedersen authored May 8, 2018
1 parent 53702e8 commit 3d91734
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/util/makeErrorFunction.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";
var format = require("util").format;
var uuid = require("node-uuid");
var uuid = require("uuid");

module.exports = function makeErrorFunction(errorCodeName, errorCodeSpec) {
if (!errorCodeName) {
Expand Down
2 changes: 1 addition & 1 deletion lib/util/parse.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use strict";
var uuid = require("node-uuid");
var uuid = require("uuid");
var getSerializableError = require("./getSerializableError");

module.exports = function parseError(err) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"node": ">=0.10.0"
},
"dependencies": {
"moduleconfig": "^2.0.0",
"underscore": "^1.8.3",
"node-uuid": "^1.4.7",
"moduleconfig": "^2.0.0"
"uuid": "^3.0.1"

This comment has been minimized.

Copy link
@eagleeye

eagleeye May 24, 2018

Collaborator

@jonatanpedersen, much better to fix versions of modules

},
"scripts": {
"test": "istanbul cover _mocha",
Expand Down

0 comments on commit 3d91734

Please sign in to comment.