-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Update to Babel 7 #15
Conversation
based on this pool maybe we must update to it's seems to be the way forward on Babel 7. I even have to install it as a peer dependency, right now. dependency error using expand log
after |
Yes, you need to use the scoped packages. Also, you can pass on individually including the following:
And instead go with
Which includes class properties and rest-spread. Object-assign is included in preset-env. Although personally I would go with stage-0, which includes all of the different proposal stages, which covers a wide range of use-cases. Just my two cents. |
I would advise against using an experimental stage, especially for this kind of stuff. better to have resilient, and documented, standards, users can bypass it via |
Well if you want to do things that way, you will have to include the following deps:
|
Hi all, we've upgraded to babel 7 officially! thank you for all your patience. |
This updates to Babel 7 and webpack 4