-
Notifications
You must be signed in to change notification settings - Fork 77
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
chore(package): update babel to version ^7.5.5 #179
chore(package): update babel to version ^7.5.5 #179
Conversation
@mrsteele curious what you think about upgrading to Babel 7 |
Codecov Report
@@ Coverage Diff @@
## master #179 +/- ##
=======================================
Coverage 98.57% 98.57%
=======================================
Files 1 1
Lines 70 70
=======================================
Hits 69 69
Misses 1 1
Continue to review full report at Codecov.
|
This is just a chore update (which it probably should be). Are there any breaking changes? |
Yeah it's just a chore. As far as breaking changes go this may be considered a breaking change.
The breaking change is more about the users configuration but should probably be considered breaking? |
I think something interesting about all of this is that these are dev dependencies. Should versions be conflicting like they are? This dependency version of Babel shouldn’t be used in your main project. |
I think you're right and I assumed the same. Some issues have come up that may be related to our own config. I'll explain though just in case it's relevant. The problem in a nutshell
The failure happens even though the code has not changed. It was just the storybook package installation itself that causes the difference. I started speculating that because deployment did work before that there must be a conflict with babel versions. Unfortunately what happens after deployment is a blackbox so I've been trying different things to see if it is a babel issue or a deployment issue. Mostly been attempting things with The other thing I've been trying is using Having these unresolved issues is why I thought The thing that sticks out to me a bit is seeing the I have more investigating to do but my current bugs seem worth mentioning in relation to the PR Might be worth noting that in the |
@mrsteele Final thoughts about everything In relation to this PR
|
This has been finished. Closing. |
Description
Update from Babel v6 to Babel v7
Following package updates
** index.js **
@babel/register
rather than the v6babel-register
The rationale is that most new projects start with Babel 7 and there are potential conflicts with babel versions.