@tarojs/taro-rn 3.7.0-alpha.26 → 3.7.0-alpha.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/taro-rn",
3
- "version": "3.7.0-alpha.26",
3
+ "version": "3.7.0-alpha.27",
4
4
  "description": "Taro RN framework",
5
5
  "main": "dist/index.js",
6
6
  "typings": "types/index.d.ts",
@@ -48,7 +48,7 @@
48
48
  "react-native-safe-area-context": "~4.5.0",
49
49
  "react-native-stylekit": "^1.0.0",
50
50
  "react-native-syan-image-picker": "0.5.3",
51
- "@tarojs/runtime-rn": "3.7.0-alpha.26"
51
+ "@tarojs/runtime-rn": "3.7.0-alpha.27"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@babel/core": "^7.14.5",
@@ -91,7 +91,7 @@
91
91
  },
92
92
  "scripts": {
93
93
  "assets": "cpy 'src/**/*.png' '!src/__tests__/*' dist",
94
- "build": "rimraf ./dist && tsc && pnpm run assets && pnpm run script",
94
+ "build": "rimraf --impl=move-remove ./dist && tsc && pnpm run assets && pnpm run script",
95
95
  "dev": "pnpm run assets && tsc --watch",
96
96
  "lint": "eslint .",
97
97
  "test": "jest --silent",
@@ -1,9 +1,9 @@
1
1
  import Taro from '@tarojs/taro'
2
2
 
3
3
  declare module '@tarojs/taro' {
4
- namespace vibrateShort {
5
- interface Option {
6
- type?: 'heavy' | 'medium' | 'light'
7
- }
8
- }
4
+ // namespace vibrateShort {
5
+ // interface Option {
6
+ // type?: 'heavy' | 'medium' | 'light'
7
+ // }
8
+ // }
9
9
  }