前端就是坑!前端就是坑!前端就是坑!重要的话说三遍。
几乎所有前端的包,每当版本已更新,就来一次大换血,不仅连api给你变了,连下载方式也给你变了,***二大爷的。好的,吐槽完毕,说回正题。
安装babel转换器相关的包:npm i babel-loader @babel/core @babel/runtime -D
安装babel语法插件相关的包:npm i @babel/preset-env @babel/plugin-transformruntime @babel/plugin-proposal-class-properties –D
这次的报错是这样事的:
npm ERR! D@1.0.0: Package no longer supported. Contact support@npmjs.com for more info
npm ERR! Not Found - GET https://registry.npmjs.com/@babel%2fplugin-transformruntime - Not found
npm ERR! '@babel/plugin-transformruntime@latest' is not in the npm registry.
npm ERR! You should bug the author to publish it (or use the name yourself!)
npm ERR! Note that you can also install from a
npm ERR! tarball, folder, http url, or git url.
大致一看,应该是 @babel/plugin-transformruntime的下载地址问题
于是我排查了了下,把其他包先下载,它自己后下载,果然不出我所料,就是它的问题。报错如下:
打开它的官网,搜索官网,找到下载方式,好小子,果然是你的毛病,官网是这样写的
为了方便你们下载,我把代码复制一下:
npm install --save-dev @babel/plugin-transform-runtime