Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 42028c6

Browse files
authored
Merge pull request #9 from renanborgez/renan/babel-upgrade
Upgrade babel from 6 to 7
2 parents 20d59da + 8188c1d commit 42028c6

File tree

6 files changed

+48
-1844
lines changed

6 files changed

+48
-1844
lines changed

.babelrc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
{
2-
"presets": ["env", "react", "airbnb", "es2015"],
2+
"presets": [
3+
"@babel/preset-env",
4+
"@babel/preset-react"
5+
],
36
"env": {
47
"test": {
5-
"plugins": ["import-noop"]
8+
"plugins": [
9+
"import-noop"
10+
]
611
},
7-
"production": {
8-
}
12+
"production": {}
913
}
1014
}

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [8.x, 10.x, 12.x]
12+
node-version: [10.x, 12.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
language: node_js
22
node_js:
33
- "node"
4-
- "8"
4+
- "10"

0 commit comments

Comments
 (0)