@tarojs/taro 3.6.37 → 3.6.38-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.37",
3
+ "version": "3.6.38-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,15 +21,15 @@
21
21
  "author": "O2Team",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@tarojs/api": "3.6.37"
24
+ "@tarojs/api": "3.6.38-alpha.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@tarojs/helper": "3.6.37",
28
- "@tarojs/runtime": "3.6.37"
27
+ "@tarojs/runtime": "3.6.38-alpha.0",
28
+ "@tarojs/helper": "3.6.38-alpha.0"
29
29
  },
30
30
  "peerDependencies": {
31
- "@tarojs/helper": "~3.6.37",
32
- "@tarojs/runtime": "~3.6.37"
31
+ "@tarojs/helper": "~3.6.38-alpha.0",
32
+ "@tarojs/runtime": "~3.6.38-alpha.0"
33
33
  },
34
34
  "peerDependenciesMeta": {
35
35
  "@types/react": {
@@ -46,6 +46,7 @@ declare module '../index' {
46
46
  [TaroGeneral.ENV_TYPE.QQ]: TaroGeneral.ENV_TYPE.QQ
47
47
  [TaroGeneral.ENV_TYPE.JD]: TaroGeneral.ENV_TYPE.JD
48
48
  [TaroGeneral.ENV_TYPE.HARMONYHYBRID]: TaroGeneral.ENV_TYPE.HARMONYHYBRID
49
+ [TaroGeneral.ENV_TYPE.ASCF]: TaroGeneral.ENV_TYPE.ASCF
49
50
  }
50
51
 
51
52
  namespace interceptorify {
@@ -119,6 +119,7 @@ export interface ICompileOption {
119
119
 
120
120
  export const enum TEMPLATE_TYPES {
121
121
  WEAPP = '.wxml',
122
+ ASCF = '.hxml',
122
123
  SWAN = '.swan',
123
124
  ALIPAY = '.axml',
124
125
  TT = '.ttml',
@@ -129,6 +130,7 @@ export const enum TEMPLATE_TYPES {
129
130
  export const enum STYLE_TYPES {
130
131
  WEAPP = '.wxss',
131
132
  SWAN = '.css',
133
+ ASCF = '.css',
132
134
  ALIPAY = '.acss',
133
135
  TT = '.ttss',
134
136
  QUICKAPP = '.css',
@@ -137,6 +139,7 @@ export const enum STYLE_TYPES {
137
139
 
138
140
  export const enum SCRIPT_TYPES {
139
141
  WEAPP = '.js',
142
+ ASCF = '.js',
140
143
  SWAN = '.js',
141
144
  ALIPAY = '.js',
142
145
  TT = '.js',
@@ -146,6 +149,7 @@ export const enum SCRIPT_TYPES {
146
149
 
147
150
  export const enum CONFIG_TYPES {
148
151
  WEAPP = '.json',
152
+ ASCF = '.json',
149
153
  SWAN = '.json',
150
154
  ALIPAY = '.json',
151
155
  TT = '.json',
package/types/global.d.ts CHANGED
@@ -410,6 +410,7 @@ declare namespace TaroGeneral {
410
410
 
411
411
  // ENV_TYPE
412
412
  enum ENV_TYPE {
413
+ ASCF = 'ASCF',
413
414
  WEAPP = 'WEAPP',
414
415
  SWAN = 'SWAN',
415
416
  ALIPAY = 'ALIPAY',