@cloudbase/framework-plugin-low-code 0.5.11-alpha.2 → 0.5.11-alpha.3
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": "@cloudbase/framework-plugin-low-code",
|
|
3
|
-
"version": "0.5.11-alpha.
|
|
3
|
+
"version": "0.5.11-alpha.3",
|
|
4
4
|
"description": "云开发 Tencent CloudBase Framework Low Code Plugin,将低码配置生成完整项目并一键部署云开发资源。",
|
|
5
5
|
"author": "yhsunshining@gmail.com",
|
|
6
6
|
"homepage": "https://github.com/TencentCloudBase/cloudbase-framework#readme",
|
|
@@ -233,16 +233,17 @@ module.exports = function (options) {
|
|
|
233
233
|
concatenateModules: true,
|
|
234
234
|
noEmitOnErrors: true,
|
|
235
235
|
splitChunks: {
|
|
236
|
+
maxSize: isDevelopment ? undefined : 2000000,
|
|
236
237
|
cacheGroups: {
|
|
237
238
|
base: {
|
|
238
239
|
test: /(react|react-dom|react-router|react-router-dom|mobx|mobx-react-lite|@cloudbase\/js-sdk)/,
|
|
239
240
|
chunks: 'all',
|
|
240
|
-
priority: 100,
|
|
241
|
+
priority: 100, // 优先级
|
|
241
242
|
},
|
|
242
243
|
utils: {
|
|
243
244
|
test: /(lodash|dayjs|axios|kbone-api|fastclick)/,
|
|
244
245
|
chunks: 'all',
|
|
245
|
-
priority: 100,
|
|
246
|
+
priority: 100, // 优先级
|
|
246
247
|
},
|
|
247
248
|
'async-commons': {
|
|
248
249
|
chunks: 'async',
|