umi 4.0.27 → 4.0.29

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.
@@ -1,5 +1,10 @@
1
1
  import { IConfigFromPlugins } from '@@/core/pluginConfig';
2
2
  import type { IConfig } from '@umijs/preset-umi';
3
3
  declare type ConfigType = IConfigFromPlugins & IConfig;
4
+ /**
5
+ * 通过方法的方式配置umi,能带来更好的 typescript 体验
6
+ * @param {ConfigType} config
7
+ * @returns ConfigType
8
+ */
4
9
  export declare function defineConfig(config: ConfigType): ConfigType;
5
10
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umi",
3
- "version": "4.0.27",
3
+ "version": "4.0.29",
4
4
  "description": "umi",
5
5
  "homepage": "https://github.com/umijs/umi/tree/master/packages/umi#readme",
6
6
  "bugs": "https://github.com/umijs/umi/issues",
@@ -38,15 +38,15 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@babel/runtime": "7.18.9",
41
- "@umijs/bundler-utils": "4.0.27",
42
- "@umijs/bundler-webpack": "4.0.27",
43
- "@umijs/core": "4.0.27",
44
- "@umijs/lint": "4.0.27",
45
- "@umijs/preset-umi": "4.0.27",
46
- "@umijs/renderer-react": "4.0.27",
47
- "@umijs/server": "4.0.27",
48
- "@umijs/test": "4.0.27",
49
- "@umijs/utils": "4.0.27",
41
+ "@umijs/bundler-utils": "4.0.29",
42
+ "@umijs/bundler-webpack": "4.0.29",
43
+ "@umijs/core": "4.0.29",
44
+ "@umijs/lint": "4.0.29",
45
+ "@umijs/preset-umi": "4.0.29",
46
+ "@umijs/renderer-react": "4.0.29",
47
+ "@umijs/server": "4.0.29",
48
+ "@umijs/test": "4.0.29",
49
+ "@umijs/utils": "4.0.29",
50
50
  "prettier-plugin-organize-imports": "^2.3.4",
51
51
  "prettier-plugin-packagejson": "^2.2.17"
52
52
  },