@tarojs/taro 3.6.21 → 3.6.22-alpha.0

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",
3
- "version": "3.6.21",
3
+ "version": "3.6.22-alpha.0",
4
4
  "description": "Taro framework",
5
5
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
6
6
  "main": "index.js",
@@ -21,11 +21,11 @@
21
21
  "author": "O2Team",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@tarojs/api": "3.6.21",
25
- "@tarojs/runtime": "3.6.21"
24
+ "@tarojs/api": "3.6.22-alpha.0",
25
+ "@tarojs/runtime": "3.6.22-alpha.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@tarojs/helper": "3.6.21"
28
+ "@tarojs/helper": "3.6.22-alpha.0"
29
29
  },
30
30
  "peerDependenciesMeta": {
31
31
  "@types/react": {
@@ -103,4 +103,10 @@ export interface IMiniAppConfig {
103
103
 
104
104
  /** 插件内部使用 */
105
105
  runtime?: Runtime
106
+
107
+ /** 体验式功能 */
108
+ experimental?: {
109
+ /** 是否开启编译模式 */
110
+ compileMode?: boolean
111
+ }
106
112
  }