@umijs/plugins 4.0.20 → 4.0.22

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/dist/antd.js CHANGED
@@ -2,22 +2,8 @@ var __create = Object.create;
2
2
  var __defProp = Object.defineProperty;
3
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
6
5
  var __getProtoOf = Object.getPrototypeOf;
7
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
9
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
10
- var __spreadValues = (a, b) => {
11
- for (var prop in b || (b = {}))
12
- if (__hasOwnProp.call(b, prop))
13
- __defNormalProp(a, prop, b[prop]);
14
- if (__getOwnPropSymbols)
15
- for (var prop of __getOwnPropSymbols(b)) {
16
- if (__propIsEnum.call(b, prop))
17
- __defNormalProp(a, prop, b[prop]);
18
- }
19
- return a;
20
- };
21
7
  var __export = (target, all) => {
22
8
  for (var name in all)
23
9
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -98,15 +84,22 @@ var antd_default = (api) => {
98
84
  }
99
85
  if (antdVersion.startsWith("5")) {
100
86
  const theme = require("@ant-design/antd-theme-variable");
101
- memo.theme = __spreadValues(__spreadValues({}, theme), memo.theme);
87
+ memo.theme = {
88
+ ...theme,
89
+ ...memo.theme
90
+ };
102
91
  }
103
92
  if (antd.dark || antd.compact) {
104
93
  const { getThemeVariables } = require("antd/dist/theme");
105
- memo.theme = __spreadValues(__spreadValues({}, getThemeVariables(antd)), memo.theme);
94
+ memo.theme = {
95
+ ...getThemeVariables(antd),
96
+ ...memo.theme
97
+ };
106
98
  }
107
- memo.theme = __spreadValues({
108
- "root-entry-name": "default"
109
- }, memo.theme);
99
+ memo.theme = {
100
+ "root-entry-name": "default",
101
+ ...memo.theme
102
+ };
110
103
  return memo;
111
104
  });
112
105
  api.addExtraBabelPlugins(() => {
package/dist/dva.js CHANGED
@@ -41,7 +41,8 @@ var dva_default = (api) => {
41
41
  schema(Joi) {
42
42
  return Joi.alternatives().try(Joi.object({
43
43
  extraModels: Joi.array().items(Joi.string()),
44
- immer: Joi.object()
44
+ immer: Joi.object(),
45
+ skipModelValidate: Joi.boolean()
45
46
  }), Joi.boolean().invalid(true));
46
47
  }
47
48
  },
@@ -192,6 +193,8 @@ export { getDvaApp } from './dva';
192
193
  function getModelUtil(api) {
193
194
  return new import_modelUtils.ModelUtils(api, {
194
195
  contentTest(content) {
196
+ if (api == null ? void 0 : api.config.dva.skipModelValidate)
197
+ return true;
195
198
  return content.startsWith("// @dva-model");
196
199
  },
197
200
  astTest({ node, content }) {
package/dist/locale.js CHANGED
@@ -1,26 +1,9 @@
1
1
  var __create = Object.create;
2
2
  var __defProp = Object.defineProperty;
3
- var __defProps = Object.defineProperties;
4
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
6
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
7
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
8
5
  var __getProtoOf = Object.getPrototypeOf;
9
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
10
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
11
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
12
- var __spreadValues = (a, b) => {
13
- for (var prop in b || (b = {}))
14
- if (__hasOwnProp.call(b, prop))
15
- __defNormalProp(a, prop, b[prop]);
16
- if (__getOwnPropSymbols)
17
- for (var prop of __getOwnPropSymbols(b)) {
18
- if (__propIsEnum.call(b, prop))
19
- __defNormalProp(a, prop, b[prop]);
20
- }
21
- return a;
22
- };
23
- var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
24
7
  var __export = (target, all) => {
25
8
  for (var name in all)
26
9
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -113,7 +96,10 @@ var locale_default = (api) => {
113
96
  const resolveKey = api.config.moment2dayjs ? "dayjs" : "moment";
114
97
  const momentPkgPath = (0, import_plugin_utils.winPath)((0, import_path.dirname)(require.resolve(`${resolveKey}/package.json`)));
115
98
  const EventEmitterPkg = (0, import_plugin_utils.winPath)((0, import_path.dirname)(require.resolve("event-emitter/package")));
116
- const { baseSeparator, baseNavigator, antd, title, useLocalStorage } = __spreadValues(__spreadValues({}, defaultConfig), api.config.locale);
99
+ const { baseSeparator, baseNavigator, antd, title, useLocalStorage } = {
100
+ ...defaultConfig,
101
+ ...api.config.locale
102
+ };
117
103
  const defaultLocale = ((_a = api.config.locale) == null ? void 0 : _a.default) || `zh${baseSeparator}CN`;
118
104
  const localeList = await getList(resolveKey);
119
105
  const momentLocales = localeList.map(({ momentLocale }) => momentLocale).filter((locale) => locale);
@@ -166,7 +152,8 @@ var locale_default = (api) => {
166
152
  UseLocalStorage: !!useLocalStorage,
167
153
  LocaleDir: localeDirName,
168
154
  ExistLocaleDir: (0, import_fs.existsSync)(localeDirPath),
169
- LocaleList: localeList.map((locale) => __spreadProps(__spreadValues({}, locale), {
155
+ LocaleList: localeList.map((locale) => ({
156
+ ...locale,
170
157
  antdLocale: locale.antdLocale.map((antdLocale, index) => ({
171
158
  locale: antdLocale,
172
159
  index
@@ -1,26 +1,9 @@
1
1
  var __create = Object.create;
2
2
  var __defProp = Object.defineProperty;
3
- var __defProps = Object.defineProperties;
4
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
6
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
7
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
8
5
  var __getProtoOf = Object.getPrototypeOf;
9
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
10
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
11
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
12
- var __spreadValues = (a, b) => {
13
- for (var prop in b || (b = {}))
14
- if (__hasOwnProp.call(b, prop))
15
- __defNormalProp(a, prop, b[prop]);
16
- if (__getOwnPropSymbols)
17
- for (var prop of __getOwnPropSymbols(b)) {
18
- if (__propIsEnum.call(b, prop))
19
- __defNormalProp(a, prop, b[prop]);
20
- }
21
- return a;
22
- };
23
- var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
24
7
  var __export = (target, all) => {
25
8
  for (var name in all)
26
9
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -65,11 +48,16 @@ var master_default = (api) => {
65
48
  api.addRuntimePlugin(() => {
66
49
  return [(0, import_withTmpPath.withTmpPath)({ api, path: "masterRuntimePlugin.tsx" })];
67
50
  });
68
- api.modifyDefaultConfig((config) => __spreadProps(__spreadValues({}, config), {
51
+ api.modifyDefaultConfig((config) => ({
52
+ ...config,
69
53
  mountElementId: import_constants.defaultMasterRootId,
70
- qiankun: __spreadProps(__spreadValues({}, config.qiankun), {
71
- master: __spreadValues(__spreadValues({}, JSON.parse(process.env.INITIAL_QIANKUN_MASTER_OPTIONS || "{}")), (config.qiankun || {}).master)
72
- })
54
+ qiankun: {
55
+ ...config.qiankun,
56
+ master: {
57
+ ...JSON.parse(process.env.INITIAL_QIANKUN_MASTER_OPTIONS || "{}"),
58
+ ...(config.qiankun || {}).master
59
+ }
60
+ }
73
61
  }));
74
62
  api.modifyRoutes((memo) => {
75
63
  Object.keys(memo).forEach((id) => {
@@ -122,10 +110,11 @@ export interface IRuntimeConfig {
122
110
  api.writeTmpFile({
123
111
  path: "masterOptions.ts",
124
112
  content: `
125
- let options = ${JSON.stringify(__spreadValues({
113
+ let options = ${JSON.stringify({
126
114
  masterHistoryType: ((_a = api.config.history) == null ? void 0 : _a.type) || import_constants.defaultHistoryType,
127
- base: api.config.base || "/"
128
- }, api.config.qiankun.master))};
115
+ base: api.config.base || "/",
116
+ ...api.config.qiankun.master
117
+ })};
129
118
  export const getMasterOptions = () => options;
130
119
  export const setMasterOptions = (newOpts) => options = ({ ...options, ...newOpts });
131
120
  `
@@ -122,7 +122,7 @@ export interface IRuntimeConfig {
122
122
  });
123
123
  });
124
124
  api.modifyDefaultConfig((memo) => {
125
- var _a, _b, _c;
125
+ var _a, _b, _c, _d, _e;
126
126
  const initialSlaveOptions = {
127
127
  devSourceMap: true,
128
128
  ...JSON.parse(process.env.INITIAL_QIANKUN_SLAVE_OPTIONS || "{}"),
@@ -141,17 +141,13 @@ export interface IRuntimeConfig {
141
141
  if (!shouldNotModifyDefaultBase && historyType !== "hash") {
142
142
  modifiedDefaultConfig.base = `/${api.pkg.name}`;
143
143
  }
144
- return modifiedDefaultConfig;
145
- });
146
- api.modifyConfig((config) => {
147
- var _a, _b;
148
- if (config.mfsu !== false) {
149
- config.mfsu = {
150
- ...config.mfsu,
151
- mfName: ((_a = config.mfsu) == null ? void 0 : _a.mfName) || `mf_${(_b = api.pkg.name) == null ? void 0 : _b.replace(/^@/, "").replace(/\W/g, "_")}`
144
+ if (modifiedDefaultConfig.mfsu !== false) {
145
+ modifiedDefaultConfig.mfsu = {
146
+ ...modifiedDefaultConfig.mfsu,
147
+ mfName: ((_d = modifiedDefaultConfig.mfsu) == null ? void 0 : _d.mfName) || `mf_${(_e = api.pkg.name) == null ? void 0 : _e.replace(/^@/, "").replace(/\W/g, "_")}`
152
148
  };
153
149
  }
154
- return config;
150
+ return modifiedDefaultConfig;
155
151
  });
156
152
  api.addHTMLHeadScripts(() => {
157
153
  var _a, _b;
@@ -93,7 +93,7 @@ export function genMount(mountElementId: string) {
93
93
  // 避免多个子应用出现在同一主应用时出现 mount 冲突
94
94
  rootElement:
95
95
  props.container?.querySelector(`#${mountElementId}`) ||
96
- mountElementId,
96
+ document.getElementById(mountElementId),
97
97
 
98
98
  basename: props.base,
99
99
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umijs/plugins",
3
- "version": "4.0.20",
3
+ "version": "4.0.22",
4
4
  "description": "@umijs/plugins",
5
5
  "homepage": "https://github.com/umijs/umi/tree/master/packages/plugins#readme",
6
6
  "bugs": "https://github.com/umijs/umi/issues",
@@ -27,7 +27,7 @@
27
27
  "@ant-design/antd-theme-variable": "^1.0.0",
28
28
  "@ant-design/icons": "^4.7.0",
29
29
  "@ant-design/pro-components": "^2.0.1",
30
- "@umijs/bundler-utils": "4.0.20",
30
+ "@umijs/bundler-utils": "4.0.22",
31
31
  "antd-dayjs-webpack-plugin": "^1.0.6",
32
32
  "axios": "^0.27.2",
33
33
  "babel-plugin-import": "^1.13.5",
@@ -46,7 +46,7 @@
46
46
  "warning": "^4.0.3"
47
47
  },
48
48
  "devDependencies": {
49
- "umi": "4.0.20"
49
+ "umi": "4.0.22"
50
50
  },
51
51
  "publishConfig": {
52
52
  "access": "public"