Webpacker v4.0.3 Release Notes

Release Date: 2019-05-28 // almost 5 years ago
  • 👀 Please see the diff

    💥 Breaking changes (for pre-existing apps)

    In each of your /packs/*.js files, change this:

    import "@babel/polyfill";
    

    to this:

    import "core-js/stable";
    import "regenerator-runtime/runtime";
    

    Don't forget install those dependencies directly!

    yarn add --save core-js regenerator-runtime