You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2019. It is now read-only.
I tried kneden out on some test files where I was previously using
babel-transform-async-to-generatorand came across a failing case.In this project I wasn't using
babel-preset-es2015as I just wanted to compile async/await down to es6.I've simplified the test case down to this:
.babelrc
{ "plugins": ["../../../src"] }actual.js
The output I get from running the test is:
which is definitely not right :)
If I add
"presets": ["es2015"]to .babelrc in the fixture dir I get the more correct looking: