91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解babel升級到7.X采坑總結

發布時間:2020-10-23 23:31:03 來源:腳本之家 閱讀:223 作者:Shurlormes 欄目:web開發

最近工作比較忙,有一段時間沒有寫前端玩了。今天試著搭一個項目,發現各種坑,以前用起來非常好的配置文件各種報錯。排查后發現原來babel升級了一個大版本,已經到7.X了,這里我總結一下升級過程中踩到的坑。

Error: Cannot find module '@babel/core'
babel-loader@8 requires Babel 7.x (the package '@babel/core'). If you'd like to use Babel 6.x ('babel-core'), you should install 'babel-loader@7'.
  at Function.Module._resolveFilename (module.js:547:15)
  at Function.Module._load (module.js:474:25)
  at Module.require (module.js:596:17)
  at require (internal/module.js:11:18)
  ....

沒找到@babel/core,需要把babel-core卸載掉,從新安裝@babel/core

npm un babel-core
npm i -D @babel/core
ERROR in ./src/index.jsx
Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: Plugin/Preset files are not allowed to export objects, only functions.
...

將babel-preset-*卸載,重新安裝@babel/preset-*,并且修改 .babelrc中的 presets

比如我的

npm:
- babel-preset-env
+ @babel/preset-env
- babel-preset-react
+ @babel/preset-react
- babel-preset-stage-0

.babelrc:
- "presets": ["react", "env", "stage-0", "mobx"]
+ "presets": ["@babel/preset-react", "@babel/preset-env", "mobx"]

除了上述的preset,我還用了babel-preset-mobx

但是沒找到 @babel/preset-mobx,從babel-preset-mobx git提交日志上看,作者已經支持了最新的babel。在之后的測試中,發現mobx的功能也能正常使用。

另外,stage-*已棄用

ERROR in ./src/index.jsx
Module build failed (from ./node_modules/babel-loader/lib/index.js):
TypeError: this.setDynamic is not a function
  at PluginPass.pre
  ...

這次是插件了,一樣把babel-plugin-*卸載,重新安裝@babel/plugin-*

然后修改.babelrc文件

具體的包名可以在 npm倉庫 里找

最終文件

.babelrc:

{
  "presets": ["@babel/preset-env", "@babel/preset-react", "mobx"],
  "plugins": [
    "@babel/plugin-proposal-object-rest-spread",
    "@babel/plugin-transform-runtime"
  ]
}

package.json:

"devDependencies": {
  "@babel/core": "^7.1.0",
  "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
  "@babel/plugin-transform-runtime": "^7.1.0",
  "@babel/preset-env": "^7.1.0",
  "@babel/preset-react": "^7.0.0",
  "babel-loader": "^8.0.2"
  "babel-preset-mobx": "^2.0.0",
  ...
 },
 "dependencies": {
  "@babel/runtime": "^7.0.0",
  ...
 }

總結

這次升級,功能上有什么變化我就不在這里寫了,大家可以自行搜索

總的來說,babel舍棄了以前的 babel-*-* 的命名方式,改成了@babel/*-*

修改依賴和.babelrc文件后就能正常啟動項目了。

webpack不用修改(除非你是webpack 3.X 升webpack 4.X)

上面的只是我遇到的問題,如果還有其他問題,可以參考資料升級指南 Upgrade to Babel 7

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙井市| 朝阳县| 宝清县| 濮阳市| 盘山县| 荃湾区| 双桥区| 乐陵市| 准格尔旗| 石屏县| 遂昌县| 安溪县| 绥江县| 建昌县| 自治县| 宿州市| 毕节市| 天气| 南通市| 河间市| 洮南市| 沅陵县| 新龙县| 华宁县| 康定县| 射阳县| 澄城县| 陇川县| 宁化县| 额济纳旗| 阿尔山市| 巴楚县| 眉山市| 六安市| 库尔勒市| 武汉市| 永宁县| 长沙县| 苗栗县| 吉首市| 镇坪县|