Skip to content

Commit ae236df

Browse files
committedSep 4, 2018
Move codecov dependency from package.json to .travis.yml file.
1 parent ea78fb6 commit ae236df

File tree

3 files changed

+7
-28
lines changed

3 files changed

+7
-28
lines changed
 

‎.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ dist: trusty
33
language: node_js
44
node_js:
55
- node
6+
install:
7+
- npm install -g codecov
68
script:
79
- npm run ci
8-
- npm run codecov
10+
- codecov
911
notifications:
1012
email: false

‎package-lock.json

-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"scripts": {
77
"lint": "eslint ./src/*",
88
"test": "jest",
9-
"ci": "npm run lint && npm run test -- --coverage",
10-
"codecov": "codecov"
9+
"ci": "npm run lint && npm run test -- --coverage"
1110
},
1211
"pre-commit": [
1312
"lint",
@@ -27,7 +26,9 @@
2726
"javascript-algorithms",
2827
"sorting-algorithms",
2928
"graph",
30-
"tree"
29+
"tree",
30+
"interview",
31+
"interview-preparation"
3132
],
3233
"author": "Oleksii Trekhleb (https://www.linkedin.com/in/trekhleb/)",
3334
"license": "MIT",
@@ -39,7 +40,6 @@
3940
"@types/jest": "^23.1.4",
4041
"babel-cli": "^6.26.0",
4142
"babel-preset-env": "^1.7.0",
42-
"codecov": "^3.0.2",
4343
"eslint": "^4.19.1",
4444
"eslint-config-airbnb": "^17.0.0",
4545
"eslint-plugin-import": "^2.13.0",

0 commit comments

Comments
 (0)
Please sign in to comment.