Created by: jamesblight
Attempt at addressing #410 (closed)
After ejecting, a .babelrc
file is generated and extended in the app's package.json
. This means additional config options can be added in a familiar way. Additionally, editor plugins that rely on a standard babel config setup will work.
babel.dev.js
and babel.prod.js
are modified to export functions which conditionally use require.resolve()
for paths.
The generated .babelrc
uses the env
flag to separate development and production configs. The configs are similar, but I haven't merged them to keep them extensible, and the pull request simpler.
Edit: e2e now passes