Skip to content

Commit

Permalink
remove mkdirp dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Oct 28, 2020
1 parent d1f9de1 commit c30a584
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -29,7 +29,6 @@
"cross-spawn": "^7.0.3",
"hallmark": "^3.0.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"run-parallel-limit": "^1.0.6",
"standard-packages": "^3.10.0",
"tape": "^5.0.1"
Expand Down
3 changes: 1 addition & 2 deletions test/clone.js
Expand Up @@ -9,7 +9,6 @@
const crossSpawn = require('cross-spawn')
const fs = require('fs')
const minimist = require('minimist')
const mkdirp = require('mkdirp')
const os = require('os')
const parallelLimit = require('run-parallel-limit')
const path = require('path')
Expand Down Expand Up @@ -55,7 +54,7 @@ if (argv.disabled) {
test('test github repos that use `standard`', t => {
t.plan(testPackages.length)

mkdirp.sync(TMP)
fs.mkdirSync(TMP, { recursive: true })

parallelLimit(testPackages.map(pkg => {
const name = pkg.name
Expand Down

0 comments on commit c30a584

Please sign in to comment.