Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
switch from node-uuid to uuid
Browse files Browse the repository at this point in the history
fix #8667

Test Plan:
N/A
  • Loading branch information
diracdeltas committed May 3, 2017
1 parent 612350d commit 2ff7918
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const {isSessionPartition} = require('../js/state/frameStateUtil')
const ipcMain = electron.ipcMain
const dialog = electron.dialog
const app = electron.app
const uuid = require('node-uuid')
const uuid = require('uuid')
const path = require('path')
const getOrigin = require('../js/state/siteUtil').getOrigin
const {adBlockResourceName} = require('./adBlock')
Expand Down
2 changes: 1 addition & 1 deletion app/ledger.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const querystring = require('querystring')
const random = require('random-lib')
const tldjs = require('tldjs')
const underscore = require('underscore')
const uuid = require('node-uuid')
const uuid = require('uuid')

const appActions = require('../js/actions/appActions')
const appConfig = require('../js/constants/appConfig')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@
"node-gyp": "^3.2.1",
"node-libs-browser": "^1.0.0",
"node-static": "^0.7.7",
"node-uuid": "^1.4.7",
"nsp": "^2.2.0",
"pre-commit": "brave/pre-commit",
"react-addons-perf": "^15.2.1",
Expand All @@ -187,6 +186,7 @@
"standard": "9.0.0",
"style-loader": "^0.13.0",
"uglify-js-harmony": "^2.7.5",
"uuid": "^3.0.1",
"webdriverio": "4.2.5",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/app/common/lib/ledgerExportUtilTest.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* global describe, it, before */
const assert = require('assert')
const underscore = require('underscore')
const uuid = require('node-uuid')
const uuid = require('uuid')
const moment = require('moment')

require('../../../braveUnit')
Expand Down
2 changes: 1 addition & 1 deletion tools/lib/transactionHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const generateTransaction = function () {
}

/** code for generating transaction object components **/
const uuid = require('node-uuid')
const uuid = require('uuid')
const crypto = require('crypto')
const randomBytes = crypto.randomBytes

Expand Down

0 comments on commit 2ff7918

Please sign in to comment.