1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00

Fix nyc config to exclude built files from coverage

This commit is contained in:
Denis Demchenko 2019-01-19 11:49:28 +02:00
parent dedbe9f199
commit b2d641e647

8
.nycrc
View File

@ -1,4 +1,10 @@
{
"sourceMap": false,
"instrument": false
"instrument": false,
"include": [
"src/**/*.js"
],
"exclude": [
"*.js"
]
}