How to upgrade to babel 7

前端 未结 3 918
孤城傲影
孤城傲影 2021-01-17 08:44

I tried to upgrade Webpack and babel to 4, 7 respectively but couldn’t make it work. Also the official doc isn’t helping much with the upgrade

I am getting followin

3条回答
  •  遇见更好的自我
    2021-01-17 09:14

    Babel changed the name of the module babel-core to @babel/core. Just run npm install @babel/core. This will install the latest version of Babel core.

    Most of the packages in Babel has been renamed to follow the pattern @babel/PACKAGE_NAME. So if you want to upgrade, change the package names to follow the pattern and run npm install.

    To upgrade to Babel 7 you can use this migration guide.

提交回复
热议问题