Skip to content

Commit

Permalink
chore: update deps (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
onigoetz committed Oct 12, 2020
1 parent 9e798f0 commit 96a85e3
Show file tree
Hide file tree
Showing 7 changed files with 6,486 additions and 5,546 deletions.
2 changes: 1 addition & 1 deletion .babelrc
@@ -1,6 +1,6 @@
{
"presets": [
["@babel/preset-env", { "loose": true, "useBuiltIns": "entry" }]
["@babel/preset-env", { "loose": true, "useBuiltIns": "entry", "corejs": 3 }]
],
"plugins": [
["@babel/proposal-class-properties", { "loose": true }],
Expand Down
6 changes: 3 additions & 3 deletions .eslintrc.json
@@ -1,6 +1,6 @@
{
"rules": {
"babel/object-curly-spacing": 2,
"@babel/object-curly-spacing": 2,
"brace-style": [2, "1tbs", {"allowSingleLine": false}],
"camelcase": [2],
"comma-dangle": [2, "always-multiline"],
Expand Down Expand Up @@ -75,9 +75,9 @@
"experimentalObjectRestSpread": true
}
},
"parser": "babel-eslint",
"parser": "@babel/eslint-parser",
"plugins": [
"babel",
"@babel",
"import"
],
"env": {
Expand Down
6 changes: 1 addition & 5 deletions .travis.yml
Expand Up @@ -3,16 +3,12 @@ sudo: false
language: node_js
matrix:
include:
- node_js: '12'
- node_js: '11'
- node_js: '10'
- node_js: '8'
- node_js: '6'
install:
- npm install -g npm@latest
- npm ci
# https://github.com/microsoft/TypeScript/issues/40166
- |
if [ "$TRAVIS_NODE_VERSION" = '6' ]; then npm install typescript@3.9.7 ; fi
script:
- npm test
cache:
Expand Down

0 comments on commit 96a85e3

Please sign in to comment.