Skip to content

Commit ea67b17

Browse files
committed
chore: update deps
1 parent 6214d92 commit ea67b17

File tree

2 files changed

+26
-18
lines changed

2 files changed

+26
-18
lines changed

.travis.yml

+18-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
1-
sudo: false
21
language: node_js
3-
cache:
4-
directories:
5-
- ~/.npm
2+
cache: npm
63
notifications:
74
email: false
85
node_js:
9-
- '8'
10-
- '10'
11-
- '12'
6+
- 10.14
7+
- 12
8+
- node
129
install:
1310
- npm install
1411
# as requested by the React team :)
1512
# https://reactjs.org/blog/2019/10/22/react-release-channels.html#using-the-next-channel-for-integration-testing
16-
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then npm install react@next react-dom@next; fi
17-
script: npm run validate
18-
after_success: kcd-scripts travis-after-success
13+
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then npm install react@next
14+
react-dom@next; fi
15+
script:
16+
- npm run validate
17+
- npx codecov@3
1918
branches:
20-
only: master
19+
only:
20+
- master
21+
- beta
22+
23+
jobs:
24+
include:
25+
- stage: release
26+
node_js: 12
27+
script: kcd-scripts travis-release

package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@
4545
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
4646
"license": "MIT",
4747
"dependencies": {
48-
"@babel/runtime": "^7.8.3",
49-
"@testing-library/dom": "^6.11.0",
48+
"@babel/runtime": "^7.8.4",
49+
"@testing-library/dom": "^6.15.0",
5050
"@types/testing-library__react": "^9.1.2"
5151
},
5252
"devDependencies": {
53-
"@reach/router": "^1.2.1",
54-
"@testing-library/jest-dom": "^5.0.0",
55-
"cross-env": "^6.0.3",
56-
"kcd-scripts": "^4.0.0",
53+
"@reach/router": "^1.3.3",
54+
"@testing-library/jest-dom": "^5.1.1",
55+
"cross-env": "^7.0.1",
56+
"kcd-scripts": "^5.4.0",
5757
"npm-run-all": "^4.1.5",
5858
"react": "^16.9.0",
5959
"react-dom": "^16.9.0",
60-
"rimraf": "^3.0.0"
60+
"rimraf": "^3.0.2"
6161
},
6262
"peerDependencies": {
6363
"react": "*",
@@ -67,6 +67,7 @@
6767
"extends": "./node_modules/kcd-scripts/eslint.js",
6868
"rules": {
6969
"react/prop-types": "off",
70+
"react/no-adjacent-inline-elements": "off",
7071
"import/no-unassigned-import": "off",
7172
"import/named": "off"
7273
}

0 commit comments

Comments
 (0)