Skip to content

Commit

Permalink
Merge pull request #288 from paparomeo/update-uuid-dependency
Browse files Browse the repository at this point in the history
Depend on `uuid` instead of deprecated `node-uuid`
  • Loading branch information
pmcnr-hx authored May 22, 2017
2 parents e125272 + 713c8c1 commit ea4b240
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/routes/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const async = require('async')
const _ = {
assign: require('lodash.assign')
}
const uuid = require('node-uuid')
const uuid = require('uuid')
const helper = require('./helper.js')
const router = require('../router.js')
const postProcess = require('../postProcess.js')
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"lodash.pick": "4.4.0",
"lodash.uniq": "4.5.0",
"lodash.uniqby": "4.7.0",
"node-uuid": "1.4.8",
"qs": "6.4.0",
"request": "2.81.0",
"use-strict": "1.0.1"
"use-strict": "1.0.1",
"uuid": "3.0.1"
},
"devDependencies": {
"eslint": "^3.6.1",
Expand Down

0 comments on commit ea4b240

Please sign in to comment.