Skip to content

Commit 9271052

Browse files
authored
Support for deep fields (#8)
* Support for deep fields * Updated travis.yml
1 parent f416573 commit 9271052

8 files changed

+5582
-7232
lines changed

.babelrc

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
{
22
"presets": [
3-
"./.babelrc.js"
3+
[
4+
"@babel/preset-env",
5+
{
6+
"loose": true,
7+
"targets": {
8+
"node": "8"
9+
}
10+
}
11+
],
12+
"@babel/preset-react",
13+
"@babel/preset-flow"
14+
],
15+
"env": {
16+
"test": {
17+
"plugins": ["@babel/plugin-transform-react-jsx-source", "istanbul"]
18+
}
19+
},
20+
"plugins": [
21+
"@babel/plugin-transform-flow-strip-types",
22+
"@babel/plugin-syntax-dynamic-import",
23+
"@babel/plugin-syntax-import-meta",
24+
"@babel/plugin-proposal-class-properties",
25+
"@babel/plugin-proposal-json-strings",
26+
"@babel/plugin-proposal-function-sent",
27+
"@babel/plugin-proposal-export-namespace-from",
28+
"@babel/plugin-proposal-numeric-separator",
29+
"@babel/plugin-proposal-throw-expressions"
430
]
531
}

.babelrc.js

-16
This file was deleted.

.travis.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
sudo: false
22
language: node_js
3+
before_install:
4+
- npm install -g [email protected]
35
cache:
46
directories:
57
- node_modules
68
notifications:
79
email: false
810
node_js:
911
- '8'
12+
- '9'
13+
- '10'
14+
- 'stable'
1015
script:
1116
- npm start validate
1217
after_success:
1318
- npx codecov
14-
- npm install --global semantic-release
15-
# - semantic-release pre && npm publish && semantic-release post
1619
branches:
1720
only:
1821
- master

0 commit comments

Comments
 (0)