Skip to content
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

Prevent duplicate Babel object spread helpers. #35136

Merged
merged 3 commits into from
Aug 12, 2019

Commits on Aug 8, 2019

  1. Prevent duplicate Babel object spread helpers.

    With version 7.5.x of Babel, the object spread helper was updated to fix
    some issues.
    
    When we upgraded Babel to 7.5.5, it started trying to use the new helper
    to perform object spreads. This would have been fine, since the relevant
    package (transform-runtime) was part of the upgrade, but Babel
    sadly assumes that its version is older, instead of auto-detecting.
    
    This change explicitly indicates which version of the transform-runtime
    we're using, fixing the issue. It unfortunately adds extra maintenance
    overhead to Babel upgrades, but the Babel authors are considering adding
    the aforemention auto-detection, at which point we could remove the
    explicit definition.
    
    See babel/babel#10261
    sgomes committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    dede86f View commit details
    Browse the repository at this point in the history
  2. Add note to changelog.

    sgomes committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    2122f5d View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2019

  1. Configuration menu
    Copy the full SHA
    53db3b8 View commit details
    Browse the repository at this point in the history