Skip to content

Commit

Permalink
update uuid to version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
balajikris committed Dec 8, 2016
1 parent 607cb67 commit 620513b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/commands/arm/armsdk/storageManagementClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'use strict';

var util = require('util');
var uuid = require('node-uuid');
var uuid = require('uuid');
var azureCommon = require('azure-common');
var Service = azureCommon.Service;
var WebResource = azureCommon.WebResource;
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/asm/mobile._js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

var fs = require('fs');
var path = require('path');
var uuid = require('node-uuid');
var uuid = require('uuid');
var async = require('async');
var azureCommon = require('azure-common');

Expand Down
2 changes: 1 addition & 1 deletion lib/commands/batch/batch.util._js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//

var __ = require('underscore');
var uuid = require('node-uuid');
var uuid = require('uuid');

var profile = require('../../util/profile');
var utils = require('../../util/utils');
Expand Down
2 changes: 1 addition & 1 deletion lib/util/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var fs = require('fs');
var path = require('path');
var url = require('url');
var util = require('util');
var uuid = require('node-uuid');
var uuid = require('uuid');

var azureCommon = require('azure-common');
var _ = require('underscore');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,13 @@
"fast-json-patch": "0.5.6",
"js2xmlparser": "1.0.0",
"jsonlint": "1.6.2",
"jsonminify": "^0.4.1",
"jsonminify": "^0.4.1",
"jsrsasign": "4.8.2 ",
"kuduscript": "1.0.9",
"moment": "^2.8.0",
"ms-rest": "^1.12.0",
"ms-rest-azure": "^1.12.0",
"node-forge": "0.6.23",
"node-uuid": "1.2.0",
"omelette": "0.1.0",
"openssl-wrapper": "0.2.1",
"progress": "^1.1.8",
Expand All @@ -107,6 +106,7 @@
"tunnel": "0.0.2",
"underscore": "1.4.x",
"user-home": "^2.0.0",
"uuid": "^3.0.0",
"validator": "5.2.0",
"winston": "2.1.1",
"wordwrap": "0.0.2",
Expand Down
2 changes: 1 addition & 1 deletion test/util/authentication/token-storage-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
var fs = require('fs');
var os = require('os');
var path = require('path');
var uuid = require('node-uuid');
var uuid = require('uuid');

var should = require('should');

Expand Down

0 comments on commit 620513b

Please sign in to comment.