码迷,mamicode.com
首页 > 移动开发 > 详细

create-react-app 构建的项目使用 mobx

时间:2018-10-30 11:14:04      阅读:2258      评论:0      收藏:0      [点我收藏+]

标签:eject   transform   support   tor   pac   mac   babel   命令行   exp   

在 create-react-app 命令行构建的 React 项目中使用 Mobx 会出现如下警告:

Support for the experimental syntax ‘decorators-legacy‘ isn‘t currently enabled (9:5):

需要启用 ESNext 的装饰器 (命令行中执行 mac 端)

  1. 先 git add .
  2. git commit -am "Save before ejecting" (然后(注意这里是 am)
  3. npm run eject
  4. 在 package.json 里 babel 添加
 "babel": {
    "presets": [
      "react-app"
    ],
    "plugins": [
      "transform-decorators-legacy"
    ]
  • npm install --save-dev babel-plugin-transform-decorators-legacy (安装该模块中间可能有告警自行消除即可)

按照以上步骤就可以开心的使用 Mobx

create-react-app 构建的项目使用 mobx

标签:eject   transform   support   tor   pac   mac   babel   命令行   exp   

原文地址:https://www.cnblogs.com/zhourongcode/p/9875286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!