From 27bc2cbb914cfef3fd7d2fd6ef97bd248c7c9bb9 Mon Sep 17 00:00:00 2001 From: Pines-Cheng Date: Thu, 20 Dec 2018 11:10:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20taro=20update=20project=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=20mobx=20=E7=9B=B8=E5=85=B3=E5=8C=85=20close=20#1588?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/taro-cli/src/util/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/taro-cli/src/util/index.js b/packages/taro-cli/src/util/index.js index 692342a58f2a..d0d18217b56c 100644 --- a/packages/taro-cli/src/util/index.js +++ b/packages/taro-cli/src/util/index.js @@ -562,7 +562,12 @@ exports.UPDATE_PACKAGE_LIST = [ 'eslint-plugin-taro', 'taro-transformer-wx', 'postcss-pxtransform', - 'babel-plugin-transform-jsx-to-stylesheet' + 'babel-plugin-transform-jsx-to-stylesheet', + '@tarojs/mobx', + '@tarojs/mobx-h5', + '@tarojs/mobx-rn', + '@tarojs/mobx-common', + '@tarojs/mobx-prop-types' ] exports.pascalCase = (str) => str.charAt(0).toUpperCase() + _.camelCase(str.substr(1))