@cloudbase/lowcode-builder 1.8.53 → 1.8.54
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/lowcode-builder",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.54",
|
|
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",
|
|
@@ -245,7 +245,7 @@ export function getDeep(target, key, keySeparator = '.') {
|
|
|
245
245
|
return target;
|
|
246
246
|
}
|
|
247
247
|
const keys = `${key}`.split(keySeparator);
|
|
248
|
-
while (keys.length > 0 && target != null) {
|
|
248
|
+
while (keys.length > 0 && target != null && target !== undefined) {
|
|
249
249
|
target = target[keys.shift()];
|
|
250
250
|
}
|
|
251
251
|
return keys.length === 0 ? target : undefined;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Component({})
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<block></block>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/* common/placeholder/index.wxss */
|