Skip to content

Commit

Permalink
fix: taro update project 添加 mobx 相关包 close #1588
Browse files Browse the repository at this point in the history
  • Loading branch information
Pines-Cheng committed Dec 20, 2018
1 parent 9b3bc63 commit 27bc2cb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/taro-cli/src/util/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit 27bc2cb

Please sign in to comment.