@cloudbase/framework-plugin-low-code 0.5.11-alpha.3 → 0.5.11
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
|
|
3
|
+
"version": "0.5.11",
|
|
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",
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
src="//qbase.cdn-go.cn/lcap/lcap-resource-cdngo/-/0.1.2/_url/ajax/libs/mobx/5.15.7/mobx.umd.js"
|
|
434
434
|
crossorigin="anonymous"
|
|
435
435
|
></script>
|
|
436
|
-
<script src="//qbase.cdn-go.cn/lcap/lcap-resource-cdngo/-/release/_npm/@cloudbase/weda-cloud-sdk@
|
|
436
|
+
<script src="//qbase.cdn-go.cn/lcap/lcap-resource-cdngo/-/release/_npm/@cloudbase/weda-cloud-sdk@0.3.14/dist/h5.browser.js"></script>
|
|
437
437
|
<script src="//qbase.cdn-go.cn/lcap/lcap-resource-cdngo/-/0.1.2/_url/npm/@zxing/library@0.18.6/umd/index.min.js"></script>
|
|
438
438
|
</body>
|
|
439
439
|
</html>
|
|
@@ -233,11 +233,12 @@ module.exports = function (options) {
|
|
|
233
233
|
concatenateModules: true,
|
|
234
234
|
noEmitOnErrors: true,
|
|
235
235
|
splitChunks: {
|
|
236
|
-
maxSize: isDevelopment ? undefined :
|
|
236
|
+
maxSize: isDevelopment ? undefined : 3000000,
|
|
237
237
|
cacheGroups: {
|
|
238
238
|
base: {
|
|
239
239
|
test: /(react|react-dom|react-router|react-router-dom|mobx|mobx-react-lite|@cloudbase\/js-sdk)/,
|
|
240
240
|
chunks: 'all',
|
|
241
|
+
minSize: isDevelopment ? undefined : 500000,
|
|
241
242
|
priority: 100, // 优先级
|
|
242
243
|
},
|
|
243
244
|
utils: {
|