Skip to content

Commit 71f390f

Browse files
committedDec 27, 2020
[Tests] stop using coveralls
1 parent e54b466 commit 71f390f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.DS_Store
2-
coverage
2+
coverage/
33
lib
44
node_modules
55
npm-debug.log
6+
7+
npm-shrinkwrap.json
68
package-lock.json
7-
reports
89
yarn-error.log
910
yarn.lock

‎package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"main": "lib/index.js",
1919
"scripts": {
2020
"build": "rimraf lib && babel src --out-dir lib --copy-files",
21-
"coveralls": "cat ./reports/lcov.info | coveralls",
2221
"create": "node ./scripts/create-rule",
2322
"flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
2423
"lint:fix": "npm run lint -- --fix",
@@ -36,7 +35,6 @@
3635
"babel-eslint": "^10.1.0",
3736
"babel-jest": "^24.9.0",
3837
"babel-preset-airbnb": "^5.0.0",
39-
"coveralls": "^3.1.0",
4038
"eslint": "^3 || ^4 || ^5 || ^6 || ^7",
4139
"eslint-config-airbnb-base": "^14.2.1",
4240
"eslint-plugin-flowtype": "^5.2.0",
@@ -77,9 +75,10 @@
7775
"jest": {
7876
"coverageReporters": [
7977
"lcov",
78+
"json",
8079
"html"
8180
],
82-
"coverageDirectory": "reports",
81+
"coverageDirectory": "coverage",
8382
"roots": [
8483
"__tests__"
8584
],

0 commit comments

Comments
 (0)