-
-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add --exclude-after-remap option for users who pre-instrument their codebase #697
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ | |
"resolve-from": "^2.0.0", | ||
"rimraf": "^2.5.4", | ||
"signal-exit": "^3.0.1", | ||
"spawn-wrap": "^1.4.0", | ||
"spawn-wrap": "1.3.8", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i've noticed some weirdness around pinning versions in npm 5; using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason The issue in question: istanbuljs/spawn-wrap#49 |
||
"test-exclude": "^4.1.1", | ||
"yargs": "^10.0.3", | ||
"yargs-parser": "^8.0.0" | ||
|
@@ -119,6 +119,7 @@ | |
"split-lines": "^1.0.0", | ||
"standard": "^9.0.2", | ||
"standard-version": "^4.0.0", | ||
"strip-indent": "^2.0.0", | ||
"tap": "^10.0.0", | ||
"which": "^1.2.11", | ||
"zero-fill": "^2.2.3" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
var apple = 99 | ||
var banana = 200 | ||
function add (item1, item2) { | ||
return item1 + item2 | ||
} | ||
function multiply (item1, item2) { | ||
return item1 * item2 | ||
} | ||
add(apple, banana) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
var strawberry = 99 | ||
var pineapple = 200 | ||
function add (item1, item2) { | ||
return item1 + item2 | ||
} | ||
add(strawberry, pineapple) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This whole section looks good to me 👍