Skip to content

Commit

Permalink
Merge pull request #119 from bcoe/cleanup
Browse files Browse the repository at this point in the history
a couple minor tweaks in prep for a release
  • Loading branch information
bcoe committed Dec 28, 2015
2 parents 7d41ab3 + 96915eb commit 4fe7f1f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## Change Log

### Upcoming
### v5.1.0 (2015/12/27 20:36 -08:00)

- [#108](https://github.com/bcoe/nyc/pull/108) Adds cache functionality. this is a big one, thanks! (@jamestalmage)
- [#118](https://github.com/bcoe/nyc/pull/118) Stop bundling spawn-wrap dependency (@bcoe)
- [#114](https://github.com/bcoe/nyc/pull/114) Update to latest versions of tap, glob, rimraf (@isaacs)
- [#107](https://github.com/bcoe/nyc/pull/107) Get test-suite running on Windows (@bcoe)
Expand Down
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 4fe7f1f

Please sign in to comment.