Skip to content

Commit

Permalink
remove secure-random from dev-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
manidlou committed Aug 5, 2018
1 parent fb3dda7 commit ca77783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/remove/__tests__/remove.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ const assert = require('assert')
const fs = require('fs')
const os = require('os')
const path = require('path')
const sr = require('secure-random')
const randomBytes = require('crypto').randomBytes
const fse = require(process.cwd())

/* global afterEach, beforeEach, describe, it */

let TEST_DIR

function buildFixtureDir () {
const buf = sr.randomBuffer(5)
const buf = randomBytes(5)
const baseDir = path.join(TEST_DIR, `TEST_fs-extra_remove-${Date.now()}`)

fs.mkdirSync(baseDir)
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"proxyquire": "^2.0.1",
"read-dir-files": "^0.1.1",
"rimraf": "^2.2.8",
"secure-random": "^1.1.1",
"semver": "^5.3.0",
"standard": "^11.0.1",
"standard-markdown": "^4.0.1"
Expand Down

0 comments on commit ca77783

Please sign in to comment.