Skip to content

Commit 96a85e3

Browse files
authored
chore: update deps (#234)
1 parent 9e798f0 commit 96a85e3

File tree

7 files changed

+6486
-5546
lines changed

7 files changed

+6486
-5546
lines changed

.babelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"presets": [
3-
["@babel/preset-env", { "loose": true, "useBuiltIns": "entry" }]
3+
["@babel/preset-env", { "loose": true, "useBuiltIns": "entry", "corejs": 3 }]
44
],
55
"plugins": [
66
["@babel/proposal-class-properties", { "loose": true }],

.eslintrc.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"rules": {
3-
"babel/object-curly-spacing": 2,
3+
"@babel/object-curly-spacing": 2,
44
"brace-style": [2, "1tbs", {"allowSingleLine": false}],
55
"camelcase": [2],
66
"comma-dangle": [2, "always-multiline"],
@@ -75,9 +75,9 @@
7575
"experimentalObjectRestSpread": true
7676
}
7777
},
78-
"parser": "babel-eslint",
78+
"parser": "@babel/eslint-parser",
7979
"plugins": [
80-
"babel",
80+
"@babel",
8181
"import"
8282
],
8383
"env": {

.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,12 @@ sudo: false
33
language: node_js
44
matrix:
55
include:
6+
- node_js: '12'
67
- node_js: '11'
78
- node_js: '10'
8-
- node_js: '8'
9-
- node_js: '6'
109
install:
1110
- npm install -g npm@latest
1211
- npm ci
13-
# https://github.com/microsoft/TypeScript/issues/40166
14-
- |
15-
if [ "$TRAVIS_NODE_VERSION" = '6' ]; then npm install [email protected] ; fi
1612
script:
1713
- npm test
1814
cache:

0 commit comments

Comments
 (0)