使用npm切换版本也可,需要提前进行reset cache,并采用全局操作。
npm install -g @tarojs/cli@1.3.10
-------------------------------2020.03.30 更新-------------------------------
啊啊啊啊啊!成功更新项目taro版本后,可以使用yarn dev:weapp成功编译,但是在微信开发工具中出现报错。
搞了几天也没有明确报错原因,所以打算还是回退本地的taro版本,但是使用npm卸载或者切换版本以及直接删除npm目录下的@taro都无效之后,使用yarn进行了下taro版本切换操作然后成功了。
yarn add @tarojs/cli@1.3.10
想知道为什么?!!!
-------------------------------2020.02.17-------------------------------
为原先开发小程序的时候Taro还是1.3.10,现在换了电脑安装了Taro 2.0,结果编译运行项目的时候就报错了。
本地Taro版本与项目Taro版本不一致。
所以需要更新项目的Taro版本。
# 首先更新 Taro CLI 工具,全部升级至最新版本
# taro
$ taro update self
# npm
npm i -g @tarojs/cli
# yarn
yarn global add @tarojs/cli
# 更新项目中 Taro 相关的依赖
$ taro update project
本地更新至了Taro 2.0.3,但是taro update project
更新后,package.json内@tarojs/taro-weapp
为1.3.37,导致本地与项目Taro版本还是不一致,所以在使用taro update project
时添加相应的版本号。
但是再次编译还是报不一致的错误,需要删除node_modules之后重新安装依赖。
警告:Warning: React version not specified in eslint-plugin-react settings. See https://github.com/yannickcr/eslint-plugin-react#configuration .
原因:eslint-plugin-react未指定react版本。
# Install ESLint either locally or globally. (Note that locally, per project, is strongly preferred)
$ npm install eslint --save-dev
# If you installed ESLint globally, you have to install React plugin globally too. Otherwise, install it locally.
$ npm install eslint-plugin-react --save-dev
并在eslintrc.js中指定react版本但是还是无效!!!!
1. settings: {
2. react: {
3. version: "detect"
4. }
5. }