Skip to content

Commit 5d1bf06

Browse files
committed
fix: use latest node to run tests
1 parent da83f51 commit 5d1bf06

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

.babelrc

+16-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
{
2-
"presets": [
3-
"es2015",
4-
"stage-0",
5-
"react"
2+
"plugins": [
3+
"add-module-exports",
4+
"lodash",
5+
"transform-class-properties",
6+
[
7+
"transform-es2015-classes",
8+
{
9+
"loose": true
10+
}
611
],
7-
"plugins": [
8-
"add-module-exports",
9-
"lodash",
10-
"transform-class-properties",
11-
["transform-es2015-classes", { "loose": true }],
12-
"transform-proto-to-assign"
13-
]
12+
"transform-proto-to-assign"
13+
],
14+
"presets": [
15+
"es2015",
16+
"stage-0",
17+
"react"
18+
]
1419
}

.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: node_js
22
node_js:
3-
- 7
4-
- 6
5-
- 5
3+
- node
4+
- 8
65
before_install:
76
- npm config set depth 0
87
notifications:

0 commit comments

Comments
 (0)