Skip to content

Commit 721dc63

Browse files
authored
ci(coverage): replace istanbul with nyc (#325)
1 parent 80fc9e8 commit 721dc63

File tree

3 files changed

+2043
-824
lines changed

3 files changed

+2043
-824
lines changed

.gitignore

Lines changed: 67 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,87 @@
1+
2+
# Created by https://www.gitignore.io/api/node
3+
# Edit at https://www.gitignore.io/?templates=node
4+
5+
### Node ###
16
# Logs
27
logs
38
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
412

513
# Runtime data
614
pids
715
*.pid
816
*.seed
17+
*.pid.lock
918

1019
# Directory for instrumented libs generated by jscoverage/JSCover
1120
lib-cov
1221

1322
# Coverage directory used by tools like istanbul
1423
coverage
1524

16-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
1729
.grunt
1830

19-
# Compiled binary addons (http://nodejs.org/api/addons.html)
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
2038
build/Release
2139

22-
# Dependency directory
23-
# Commenting this out is preferred by some people, see
24-
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
25-
node_modules
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
2643

27-
# Users Environment Variables
28-
.lock-wscript
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# Optional npm cache directory
48+
.npm
49+
50+
# Optional eslint cache
51+
.eslintcache
52+
53+
# Optional REPL history
54+
.node_repl_history
55+
56+
# Output of 'npm pack'
57+
*.tgz
58+
59+
# Yarn Integrity file
60+
.yarn-integrity
61+
62+
# dotenv environment variables file
63+
.env
64+
.env.test
65+
66+
# parcel-bundler cache (https://parceljs.org/)
67+
.cache
68+
69+
# next.js build output
70+
.next
71+
72+
# nuxt.js build output
73+
.nuxt
74+
75+
# vuepress build output
76+
.vuepress/dist
77+
78+
# Serverless directories
79+
.serverless/
80+
81+
# FuseBox cache
82+
.fusebox/
83+
84+
# DynamoDB Local files
85+
.dynamodb/
86+
87+
# End of https://www.gitignore.io/api/node

0 commit comments

Comments
 (0)