@tarojs/taro 3.6.22-nightly.0 → 3.6.22

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.22-nightly.0",
3
+ "version": "3.6.22",
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/runtime": "3.6.22-nightly.0",
25
- "@tarojs/api": "3.6.22-nightly.0"
24
+ "@tarojs/api": "3.6.22",
25
+ "@tarojs/runtime": "3.6.22"
26
26
  },
27
27
  "devDependencies": {
28
- "@tarojs/helper": "3.6.22-nightly.0"
28
+ "@tarojs/helper": "3.6.22"
29
29
  },
30
30
  "peerDependenciesMeta": {
31
31
  "@types/react": {
@@ -20,6 +20,8 @@ interface IPrebundle {
20
20
  interface ICompiler {
21
21
  type: CompilerTypes
22
22
  prebundle?: IPrebundle
23
+ /** 错误处理级别。可选值:0、1 */
24
+ errorLevel?: number
23
25
  }
24
26
 
25
27
  export type Compiler = CompilerTypes | ICompiler
@@ -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
  }