Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Commit

Permalink
fix(nyc config): fixed nyc config scope (excluded sn-redux.js)
Browse files Browse the repository at this point in the history
  • Loading branch information
gallayl committed May 15, 2017
1 parent bc0713e commit 4f358ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"commit": "git-cz",
"gulp": "gulp",
"pretest": "npm run build",
"test": "nyc mocha -p tsconfig.json dist/test/index.js",
"test": "nyc mocha dist/test/index.js",
"check-coverage": "istanbul check-coverage ",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"prebuild": "npm run lint && npm run clean",
Expand Down Expand Up @@ -41,9 +41,9 @@
"url": "https://github.com/SenseNet/sn-redux/issues"
},
"nyc": {
"exclude": "dist/test/**/*.*",
"include": "dist/src/**/*.js",
"cache": true,
"include": "dist/src/**/*.*",
"exclude": "dist/src/**/sn-redux.js",
"all": true,
"reporter": [
"lcov",
Expand Down

0 comments on commit 4f358ce

Please sign in to comment.