@uniformdev/cli 19.134.3-alpha.10 → 19.134.3-alpha.28
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/index.mjs +6 -6
- package/package.json +8 -8
package/dist/index.mjs
CHANGED
|
@@ -7955,13 +7955,13 @@ function createProjectMapNodeEngineDataSource({
|
|
|
7955
7955
|
const projectMaps = (await client.getProjectMapDefinitions()).projectMaps;
|
|
7956
7956
|
for (const projectMap of projectMaps) {
|
|
7957
7957
|
const nodes = (await client.getNodes({ projectMapId: projectMap.id })).nodes;
|
|
7958
|
-
for await (const
|
|
7959
|
-
if (
|
|
7958
|
+
for await (const node of nodes ?? []) {
|
|
7959
|
+
if (node) {
|
|
7960
7960
|
const result = {
|
|
7961
|
-
id: selectIdentifier11({ ...
|
|
7962
|
-
displayName: selectDisplayName11(
|
|
7963
|
-
providerId: selectIdentifier11({ ...
|
|
7964
|
-
object: { ...
|
|
7961
|
+
id: selectIdentifier11({ ...node, projectMapId: projectMap.id }, projectId),
|
|
7962
|
+
displayName: selectDisplayName11(node),
|
|
7963
|
+
providerId: selectIdentifier11({ ...node, projectMapId: projectMap.id }, projectId)[0],
|
|
7964
|
+
object: { ...node, projectMapId: projectMap.id }
|
|
7965
7965
|
};
|
|
7966
7966
|
yield result;
|
|
7967
7967
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "19.134.3-alpha.
|
|
3
|
+
"version": "19.134.3-alpha.28+506233b832",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@thi.ng/mime": "^2.2.23",
|
|
20
|
-
"@uniformdev/assets": "19.134.3-alpha.
|
|
21
|
-
"@uniformdev/canvas": "19.134.3-alpha.
|
|
22
|
-
"@uniformdev/context": "19.134.3-alpha.
|
|
23
|
-
"@uniformdev/files": "19.134.3-alpha.
|
|
24
|
-
"@uniformdev/project-map": "19.134.3-alpha.
|
|
25
|
-
"@uniformdev/redirect": "19.134.3-alpha.
|
|
20
|
+
"@uniformdev/assets": "19.134.3-alpha.28+506233b832",
|
|
21
|
+
"@uniformdev/canvas": "19.134.3-alpha.28+506233b832",
|
|
22
|
+
"@uniformdev/context": "19.134.3-alpha.28+506233b832",
|
|
23
|
+
"@uniformdev/files": "19.134.3-alpha.28+506233b832",
|
|
24
|
+
"@uniformdev/project-map": "19.134.3-alpha.28+506233b832",
|
|
25
|
+
"@uniformdev/redirect": "19.134.3-alpha.28+506233b832",
|
|
26
26
|
"call-bind": "^1.0.2",
|
|
27
27
|
"colorette": "2.0.20",
|
|
28
28
|
"cosmiconfig": "8.3.6",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"publishConfig": {
|
|
69
69
|
"access": "public"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "506233b8324cbb3d7d6a0ef97b8d5e01b36bfb08"
|
|
72
72
|
}
|