Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(react): 支付宝小程序插件配置字段缺失、Taro专有Hooks在小程序插件页面中无法使用 #11362

Merged
merged 12 commits into from
Mar 27, 2022
Merged
2 changes: 1 addition & 1 deletion examples/build-weapp-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ npm run build

#### 3. 开发

插件逻辑位于 `src/plugin` 内,而 `pages/index` 则是用于测试插件的页面。
插件逻辑位于 `src/plugin` 内,而 `src/pages/index` 则是用于测试插件的页面。

#### 4. 预览

Expand Down
20 changes: 10 additions & 10 deletions examples/build-weapp-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,26 @@
],
"dependencies": {
"@babel/runtime": "^7.7.7",
"@tarojs/components": "3.4.2",
"@tarojs/plugin-framework-react": "3.4.2",
"@tarojs/react": "3.4.2",
"@tarojs/runtime": "3.4.2",
"@tarojs/taro": "3.4.2",
"@tarojs/components": "3.4.3",
"@tarojs/plugin-framework-react": "3.4.3",
"@tarojs/react": "3.4.3",
"@tarojs/runtime": "3.4.3",
"@tarojs/taro": "3.4.3",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@tarojs/cli": "3.4.2",
"@tarojs/mini-runner": "3.4.2",
"@tarojs/webpack-runner": "3.4.2",
"@tarojs/cli": "3.4.3",
"@tarojs/mini-runner": "3.4.3",
"@tarojs/webpack-runner": "3.4.3",
"@types/react": "^17.0.2",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-preset-taro": "3.4.2",
"babel-preset-taro": "3.4.3",
"eslint": "^6.8.0",
"eslint-config-taro": "3.4.2",
"eslint-config-taro": "3.4.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-react-hooks": "^4.2.0",
Expand Down
Loading