@tarojs/taro 3.6.2-canary.0 → 3.6.2-canary.1

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.2-canary.0",
3
+ "version": "3.6.2-canary.1",
4
4
  "description": "Taro framework",
5
5
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
6
6
  "main": "index.js",
@@ -21,8 +21,8 @@
21
21
  "author": "O2Team",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@tarojs/api": "3.6.2-canary.0",
25
- "@tarojs/runtime": "3.6.2-canary.0"
24
+ "@tarojs/api": "3.6.2-canary.1",
25
+ "@tarojs/runtime": "3.6.2-canary.1"
26
26
  },
27
27
  "peerDependenciesMeta": {
28
28
  "@types/react": {
@@ -19,7 +19,7 @@ interface IPrebundle {
19
19
 
20
20
  interface ICompiler {
21
21
  type: CompilerTypes
22
- prebundle: IPrebundle
22
+ prebundle?: IPrebundle
23
23
  }
24
24
 
25
25
  export type Compiler = CompilerTypes | ICompiler
package/types/global.d.ts CHANGED
@@ -410,13 +410,15 @@ declare namespace TaroGeneral {
410
410
  // ENV_TYPE
411
411
  enum ENV_TYPE {
412
412
  WEAPP = 'WEAPP',
413
- WEB = 'WEB',
414
- RN = 'RN',
415
413
  SWAN = 'SWAN',
416
414
  ALIPAY = 'ALIPAY',
417
415
  TT = 'TT',
418
416
  QQ = 'QQ',
419
- JD = 'JD'
417
+ JD = 'JD',
418
+ WEB = 'WEB',
419
+ RN = 'RN',
420
+ HARMONY = 'HARMONY',
421
+ QUICKAPP = 'QUICKAPP'
420
422
  }
421
423
 
422
424
  type TDeviceRatio = Record<string, number>