Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a48b128

Browse filesBrowse files
committed
[Dev Deps] switch from covert to nyc
1 parent f0fb958 commit a48b128
Copy full SHA for a48b128

File tree

Expand file treeCollapse file tree

3 files changed

+19
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+19
-1
lines changed
Open diff view settings
Collapse file

‎.gitignore‎

Copy file name to clipboardExpand all lines: .gitignore
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
node_modules
44

5+
coverage/
6+
.nyc_output/
7+
58
# Only apps should have lockfiles
69
npm-shrinkwrap.json
710
package-lock.json
Collapse file

‎.nycrc‎

Copy file name to clipboard
+14Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"all": true,
3+
"check-coverage": false,
4+
"reporter": ["text-summary", "text", "html", "json"],
5+
"lines": 86,
6+
"statements": 85.93,
7+
"functions": 82.43,
8+
"branches": 76.06,
9+
"exclude": [
10+
"coverage",
11+
"example",
12+
"test"
13+
]
14+
}
Collapse file

‎package.json‎

Copy file name to clipboardExpand all lines: package.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
"description": "parse argument options",
55
"main": "index.js",
66
"devDependencies": {
7+
"nyc": "^10.3.2",
78
"tape": "^5.6.1"
89
},
910
"scripts": {
1011
"prepack": "npmignore --auto --commentLines=auto",
11-
"test": "tape test/*.js"
12+
"test": "nyc tape test/*.js"
1213
},
1314
"testling": {
1415
"files": "test/*.js",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.