-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(log): support local devlogs through -l argument
BREAKING CHANGE: Requires Node 6 or above now ISSUES CLOSED: #2
- Loading branch information
Showing
11 changed files
with
345 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.nyc_output/ | ||
node_modules/ | ||
|
||
dist/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"check-coverage": true, | ||
"per-file": true, | ||
"lines": 95, | ||
"statements": 95, | ||
"functions": 90, | ||
"branches": 95, | ||
"include": [ | ||
"bin/**/*.js" | ||
], | ||
"exclude": [ | ||
"test/**/*.spec.js" | ||
], | ||
"reporter": [ | ||
"lcov", | ||
"text", | ||
"cobertura", | ||
"html", | ||
"json" | ||
], | ||
"cache": true, | ||
"all": true, | ||
"report-dir": "./reports/coverage" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.