Skip to content

Commit

Permalink
Use npm instead of yarn for code coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaney committed Jun 24, 2019
1 parent 6ea7ede commit f2638d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -10,7 +10,7 @@
],
"engines": {
"node": ">=8.10.0",
"yarn": ">= 1.3.2"
"yarn": "1.10.1"
},
"main": "lib/client.js",
"module": "lib/client.mjs",
Expand All @@ -22,8 +22,8 @@
"test": "mocha test --require esm --reporter spec",
"test:watch": "chokidar --initial './lib' './test' './examples' -c 'yarn test'",
"watch": "yarn test:watch & yarn lint:watch",
"coveralls": "nyc yarn test && nyc report --reporter=text-lcov | coveralls",
"coveralls:report": "nyc --reporter=lcov --reporter=text-lcov npm test"
"coveralls": "nyc --require esm --extension .mjs --reporter text-lcov npm test | coveralls",
"coveralls:report": "nyc --require esm --extension .mjs --reporter text-summary npm test"
},
"author": "Vermonster",
"license": "MIT",
Expand Down

0 comments on commit f2638d4

Please sign in to comment.