Fix yarn coverage script on Windows

This commit is contained in:
Jérémie Astori 2018-03-19 20:01:25 -04:00
parent 8ecacc9978
commit 22725968e8
No known key found for this signature in database
GPG key ID: B9A4F245CD67BDE8
2 changed files with 2 additions and 3 deletions

View file

@ -13,7 +13,7 @@
"homepage": "https://thelounge.chat/",
"scripts": {
"build": "webpack",
"coverage": "rm -rf .nyc_output/ && run-s test:{client,server} && nyc --nycrc-path=test/.nycrc-report report",
"coverage": "run-s test:{client,server} && nyc --nycrc-path=test/.nycrc-report report",
"dev": "run-p watch start",
"lint:css": "stylelint --color \"client/**/*.css\"",
"lint:js": "eslint . --report-unused-disable-directives --color",

View file

@ -6,6 +6,5 @@
"reporter": [
"json",
"text-summary"
],
"clean": false
]
}