mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-10 10:05:38 +00:00
888d6a7614
Adding Travis CI with custom deploy script for deploying in surge static files. Major changes in code: * Adding dynamic-import-node for fixing Travis tests * Add babel-polyfill * Adding a comment in PR using GitHub REST API with deployed link
26 lines
416 B
Plaintext
26 lines
416 B
Plaintext
{
|
|
"presets": [
|
|
"@babel/react",
|
|
"@babel/preset-flow",
|
|
[
|
|
"@babel/env",
|
|
{
|
|
"forceAllTransforms": true
|
|
}
|
|
],
|
|
"@babel/stage-0"
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-syntax-dynamic-import",
|
|
"transform-es3-member-expression-literals",
|
|
"transform-es3-property-literals"
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"plugins": [
|
|
"dynamic-import-node"
|
|
]
|
|
}
|
|
}
|
|
}
|