@tarojs/taro 3.6.22-alpha.5 → 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-alpha.5",
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-alpha.5",
25
- "@tarojs/api": "3.6.22-alpha.5"
24
+ "@tarojs/api": "3.6.22",
25
+ "@tarojs/runtime": "3.6.22"
26
26
  },
27
27
  "devDependencies": {
28
- "@tarojs/helper": "3.6.22-alpha.5"
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