@tarojs/taro 3.6.14-alpha.0 → 3.6.14

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.14-alpha.0",
3
+ "version": "3.6.14",
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/api": "3.6.14-alpha.0",
25
- "@tarojs/runtime": "3.6.14-alpha.0"
24
+ "@tarojs/api": "3.6.14",
25
+ "@tarojs/runtime": "3.6.14"
26
26
  },
27
27
  "devDependencies": {
28
- "@tarojs/helper": "3.6.14-alpha.0"
28
+ "@tarojs/helper": "3.6.14"
29
29
  },
30
30
  "peerDependenciesMeta": {
31
31
  "@types/react": {
@@ -2,7 +2,7 @@ import type Webpack from 'webpack'
2
2
  import type Chain from 'webpack-chain'
3
3
  import { type Input } from 'postcss'
4
4
  import type { Compiler } from '../compiler'
5
- import type { IModifyWebpackChain } from '../hooks'
5
+ import type { IModifyChainData } from '../hooks'
6
6
  import type { ICopyOptions, IOption, ISassOptions, TogglableOptions } from './util'
7
7
  import type { IH5Config } from './h5'
8
8
  import type { IMiniAppConfig } from './mini'
@@ -179,7 +179,7 @@ export interface IProjectBaseConfig {
179
179
  /**
180
180
  * 编译中修改 webpack 配置,在这个钩子中,你可以对 webpackChain 作出想要的调整,等同于配置 [`webpackChain`](./config-detail#miniwebpackchain)
181
181
  */
182
- modifyWebpackChain?: (chain: Chain, webpack: typeof Webpack, data: IModifyWebpackChain) => Promise<any>
182
+ modifyWebpackChain?: (chain: Chain, webpack: typeof Webpack, data: IModifyChainData) => Promise<any>
183
183
 
184
184
  /**
185
185
  * 修改编译过程中的页面组件配置
@@ -8,6 +8,6 @@ export interface IComponentConfig {
8
8
  includeAll: boolean
9
9
  }
10
10
 
11
- export interface IModifyWebpackChain {
11
+ export interface IModifyChainData {
12
12
  componentConfig?: IComponentConfig
13
13
  }