@uniformdev/cli 20.30.1 → 20.30.2-alpha.1
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 +1 -1
- package/package.json +9 -9
package/dist/index.mjs
CHANGED
|
@@ -364,7 +364,7 @@ async function syncEngine({
|
|
|
364
364
|
const ids = Array.isArray(sourceObject.id) ? sourceObject.id : [sourceObject.id];
|
|
365
365
|
const targetObject = targetItems.get(ids[0]);
|
|
366
366
|
status.compared++;
|
|
367
|
-
const invalidTargetObjects = ids.map((i) => targetItems.get(i)).filter((o) => o?.object !== targetObject?.object);
|
|
367
|
+
const invalidTargetObjects = ids.map((i) => targetItems.get(i)).filter((o) => o !== void 0 && o?.object !== targetObject?.object);
|
|
368
368
|
if (targetObject && invalidTargetObjects.length === 0) {
|
|
369
369
|
sourceObject = onBeforeCompareObjects ? await onBeforeCompareObjects(sourceObject, targetObject) : sourceObject;
|
|
370
370
|
const compareResult = compareContents(sourceObject, targetObject);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "20.30.1",
|
|
3
|
+
"version": "20.30.2-alpha.1+1963f268e4",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@thi.ng/mime": "^2.2.23",
|
|
30
|
-
"@uniformdev/assets": "20.30.1",
|
|
31
|
-
"@uniformdev/canvas": "20.30.1",
|
|
32
|
-
"@uniformdev/context": "20.30.1",
|
|
33
|
-
"@uniformdev/files": "20.30.1",
|
|
34
|
-
"@uniformdev/project-map": "20.30.1",
|
|
35
|
-
"@uniformdev/redirect": "20.30.1",
|
|
36
|
-
"@uniformdev/richtext": "20.30.1",
|
|
30
|
+
"@uniformdev/assets": "20.30.2-alpha.1+1963f268e4",
|
|
31
|
+
"@uniformdev/canvas": "20.30.2-alpha.1+1963f268e4",
|
|
32
|
+
"@uniformdev/context": "20.30.2-alpha.1+1963f268e4",
|
|
33
|
+
"@uniformdev/files": "20.30.2-alpha.1+1963f268e4",
|
|
34
|
+
"@uniformdev/project-map": "20.30.2-alpha.1+1963f268e4",
|
|
35
|
+
"@uniformdev/redirect": "20.30.2-alpha.1+1963f268e4",
|
|
36
|
+
"@uniformdev/richtext": "20.30.2-alpha.1+1963f268e4",
|
|
37
37
|
"call-bind": "^1.0.2",
|
|
38
38
|
"colorette": "2.0.20",
|
|
39
39
|
"cosmiconfig": "9.0.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"publishConfig": {
|
|
81
81
|
"access": "public"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "1963f268e46bdb312cc829e56b13220442333df4"
|
|
84
84
|
}
|