@tarojs/taro 3.5.0-alpha.9 → 3.5.0-beta.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.5.0-alpha.9",
3
+ "version": "3.5.0-beta.0",
4
4
  "description": "Taro framework",
5
5
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
6
6
  "main": "index.js",
@@ -24,9 +24,8 @@
24
24
  "author": "O2Team",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@tarojs/api": "3.5.0-alpha.9",
28
- "@tarojs/runtime": "3.5.0-alpha.9",
29
- "@tarojs/taro-h5": "3.5.0-alpha.9"
27
+ "@tarojs/api": "3.5.0-beta.0",
28
+ "@tarojs/runtime": "3.5.0-beta.0"
30
29
  },
31
30
  "peerDependenciesMeta": {
32
31
  "@types/react": {
@@ -42,5 +41,5 @@
42
41
  "optional": true
43
42
  }
44
43
  },
45
- "gitHead": "bce3db2d4d9459fe0175f3d0d4b97c2df44015be"
44
+ "gitHead": "ee17506905a260bacd1aa6217a2376ba7bb8200f"
46
45
  }
@@ -391,10 +391,8 @@ declare module '../../index' {
391
391
  [property: string]: any
392
392
  }
393
393
 
394
- type ClearAnimationOptions = {
395
- [p in keyof KeyFrame]: boolean
396
- }
397
-
394
+ /** @ignore */
395
+ type ClearAnimationOptions = Record<keyof KeyFrame, boolean>
398
396
 
399
397
  /** @ignore */
400
398
  interface ScrollTimelineOption {
@@ -119,7 +119,6 @@ interface Runtime {
119
119
 
120
120
  export interface IMiniAppConfig {
121
121
  appOutput?: boolean
122
- enableSourceMap?: boolean
123
122
  sourceMapType?: string
124
123
  debugReact?: boolean
125
124
  minifyXML?: {
@@ -127,7 +126,6 @@ export interface IMiniAppConfig {
127
126
  }
128
127
 
129
128
  webpackChain?: (chain: any, webpack: any, PARSE_AST_TYPE: any) => void
130
- entry?: webpack.EntryObject
131
129
  output?: webpack.Output
132
130
  postcss?: IPostcssOption
133
131
  cssLoaderOption?: IOption
@@ -177,11 +175,9 @@ export interface IH5Config {
177
175
 
178
176
  webpackChain?: (chain: any, webpack: any) => void
179
177
 
180
- entry?: webpack.EntryObject
181
178
  output?: webpack.Output
182
179
  router?: IH5RouterConfig
183
180
  devServer?: webpackDevServer.Configuration
184
- enableSourceMap?: boolean
185
181
  sourceMapType?: 'none' | 'eval' | 'cheap-eval-source-map' | 'cheap-module-eval-source-map' | 'eval-source-map' | 'cheap-source-map' | 'cheap-module-source-map' | 'inline-cheap-source-map' | 'inline-cheap-module-source-map' | 'source-map' | 'inline-source-map' | 'hidden-source-map' | 'nosources-source-map'
186
182
  enableExtract?: boolean
187
183
  transformOnly?: boolean