Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
mocha and blanket are now pinned to their respective minor versions,
using ^ vs ~ resulted in test coverage output breaking.
  • Loading branch information
ericnorris committed Apr 22, 2015
1 parent ed170a3 commit e966f4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"homepage": "https://github.com/ericnorris/striptags",
"bugs": "https://github.com/ericnorris/striptags/issues",
"version": "2.0.1",
"version": "2.0.2",
"devDependencies": {
"blanket": "^1.1.6",
"mocha": "^2.1.0"
"blanket": "~1.1.6",
"mocha": "~2.1.0"
},
"keywords": [
"striptags",
Expand All @@ -23,7 +23,7 @@
],
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"test-coverage": "mocha --require blanket -R html-cov > coverage.html"
"test-coverage": "node ./node_modules/mocha/bin/mocha --require blanket -R html-cov > coverage.html"
},
"jshintConfig": {
"node": true
Expand Down

0 comments on commit e966f4e

Please sign in to comment.