Skip to content

Commit

Permalink
Change istanbul call with call to cli.js
Browse files Browse the repository at this point in the history
See: gotwarlost/istanbul#44
Now karl can be used with node 0.12 and later again
  • Loading branch information
KurtPattyn committed Oct 1, 2015
1 parent 8be4ee8 commit 77992c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"main": "./lib/karl.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha --harmony --require test/support/env --bail --reporter spec --check-leaks test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --harmony --require test/support/env --reporter spec --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --harmony --require test/support/env --reporter spec --check-leaks test/",
"check-coverage": "istanbul check-coverage --harmony --statements 100 --lines 100 --functions 100 --branches 100",
"test-ci": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --report lcovonly -- --harmony --require test/support/env --reporter spec --check-leaks test/",
"test-cov": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter spec --check-leaks test/",
"check-coverage": "istanbul check-coverage --statements 100 --lines 100 --functions 100 --branches 100",
"benchmark": "node --harmony benchmarks/benchmark",
"make-docs": "./node_modules/.bin/jsdoc -c jsdoc.conf",
"check-style": "./node_modules/jscs/bin/jscs .",
Expand Down

0 comments on commit 77992c7

Please sign in to comment.