Skip to content

Commit

Permalink
remove del dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Coe committed Dec 28, 2015
1 parent 7d41ab3 commit 09cac74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

var fs = require('fs')
var path = require('path')
var del = require('del')
var rimraf = require('rimraf')
var mkdirp = require('mkdirp')
var forkingTap = require('forking-tap')
var zeroFill = require('zero-fill')
var sanitizeFilename = require('sanitize-filename')

// Delete previous files.
process.chdir(__dirname)
del.sync(['test/build'])
rimraf.sync('test/build')
mkdirp.sync(path.join(__dirname, 'test/build'))

var testDir = path.join(__dirname, 'test/src')
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@
"any-path": "^1.3.0",
"chai": "^3.0.0",
"coveralls": "^2.11.4",
"del": "^2.2.0",
"forking-tap": "^0.1.1",
"is-windows": "^0.1.0",
"lodash": "^3.10.0",
Expand Down
3 changes: 1 addition & 2 deletions test/src/nyc-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,7 @@ describe('nyc', function () {

var proc = spawn(process.execPath, args, {
cwd: fixtures,
env: {},
stdio: 'inherit'
env: {}
})

proc.on('close', function (code) {
Expand Down

0 comments on commit 09cac74

Please sign in to comment.