Skip to content

Commit

Permalink
fix(uuid): import versioned uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Aug 5, 2018
1 parent 5797963 commit 7b68551
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/auth.js
@@ -1,7 +1,7 @@
'use strict'

var caseless = require('caseless')
var uuid = require('uuid')
var uuid = require('uuid/v4')
var helpers = require('./helpers')

var md5 = helpers.md5
Expand Down
2 changes: 1 addition & 1 deletion lib/multipart.js
@@ -1,6 +1,6 @@
'use strict'

var uuid = require('uuid')
var uuid = require('uuid/v4')
var CombinedStream = require('combined-stream')
var isstream = require('isstream')
var Buffer = require('safe-buffer').Buffer
Expand Down
2 changes: 1 addition & 1 deletion lib/oauth.js
Expand Up @@ -3,7 +3,7 @@
var url = require('url')
var qs = require('qs')
var caseless = require('caseless')
var uuid = require('uuid')
var uuid = require('uuid/v4')
var oauth = require('oauth-sign')
var crypto = require('crypto')
var Buffer = require('safe-buffer').Buffer
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -46,7 +46,7 @@
"safe-buffer": "^5.1.1",
"tough-cookie": "~2.3.3",
"tunnel-agent": "^0.6.0",
"uuid": "^3.1.0"
"uuid": "^3.3.2"
},
"scripts": {
"test": "npm run lint && npm run test-ci && npm run test-browser",
Expand Down

0 comments on commit 7b68551

Please sign in to comment.