Skip to content

Commit

Permalink
Merge pull request #69 from jmcriffey/feature-runWithbabelNode
Browse files Browse the repository at this point in the history
Feature run withbabel node
  • Loading branch information
jmcriffey authored Jun 29, 2016
2 parents 0ec24c1 + 077b327 commit 932c126
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/command/common/run-with-cover.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function run(args, commandName, enableHooks, callback) {
}

runFn = function () {
process.argv = ["node", cmd].concat(cmdArgs);
process.argv = ["babel-node", cmd].concat(cmdArgs);
if (verbose) {
console.log('Running: ' + process.argv.join(' '));
}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-istanbul",
"version": "0.9.0",
"version": "0.10.0",
"description": "Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests and browser tests. Built for scale",
"keywords": [
"coverage",
Expand Down Expand Up @@ -117,6 +117,7 @@
"wordwrap": "1.0.x"
},
"peerDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x"
},
"files": [
Expand Down

0 comments on commit 932c126

Please sign in to comment.