@uniformdev/cli 20.77.1 → 20.77.2-alpha.3.sha-e9420d8e77
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 +9 -10
- package/package.json +10 -10
package/dist/index.mjs
CHANGED
|
@@ -2692,6 +2692,7 @@ var deleteDownloadedFileByUrl = async (url, options) => {
|
|
|
2692
2692
|
};
|
|
2693
2693
|
|
|
2694
2694
|
// src/files/files.ts
|
|
2695
|
+
import { selectWritableAssetFields } from "@uniformdev/assets";
|
|
2695
2696
|
import {
|
|
2696
2697
|
ASSETS_SOURCE_UNIFORM,
|
|
2697
2698
|
getPropertiesValue as getPropertiesValue2,
|
|
@@ -3148,17 +3149,15 @@ var compareCompositionsOrEntriesWithoutAssetUrlsForPublishing = (source, target)
|
|
|
3148
3149
|
}
|
|
3149
3150
|
return compareCompositionsOrEntriesWithoutAssetUrls(source, target);
|
|
3150
3151
|
};
|
|
3151
|
-
var
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3152
|
+
var selectComparableAsset = ({ asset }) => ({
|
|
3153
|
+
_id: asset._id,
|
|
3154
|
+
_name: asset._name,
|
|
3155
|
+
_dataResources: asset._dataResources,
|
|
3156
|
+
labels: asset.labels,
|
|
3157
|
+
fields: selectWritableAssetFields(asset.fields)
|
|
3158
|
+
});
|
|
3157
3159
|
var compareAssetsWithoutUrls = (source, target) => {
|
|
3158
|
-
return serializedDequal(
|
|
3159
|
-
removeUrlFromAsset(structuredClone(source.object)),
|
|
3160
|
-
removeUrlFromAsset(structuredClone(target.object))
|
|
3161
|
-
);
|
|
3160
|
+
return serializedDequal(selectComparableAsset(source.object), selectComparableAsset(target.object));
|
|
3162
3161
|
};
|
|
3163
3162
|
var downloadFilesForCompositionOrEntry = async ({
|
|
3164
3163
|
entity,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "20.77.
|
|
3
|
+
"version": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@inquirer/prompts": "^8.5.2",
|
|
29
29
|
"@thi.ng/mime": "^2.2.23",
|
|
30
|
-
"@uniformdev/assets": "20.77.
|
|
31
|
-
"@uniformdev/automations-sdk": "20.77.
|
|
32
|
-
"@uniformdev/canvas": "20.77.
|
|
33
|
-
"@uniformdev/context": "20.77.
|
|
34
|
-
"@uniformdev/files": "20.77.
|
|
35
|
-
"@uniformdev/project-map": "20.77.
|
|
36
|
-
"@uniformdev/redirect": "20.77.
|
|
37
|
-
"@uniformdev/richtext": "20.77.
|
|
30
|
+
"@uniformdev/assets": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
31
|
+
"@uniformdev/automations-sdk": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
32
|
+
"@uniformdev/canvas": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
33
|
+
"@uniformdev/context": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
34
|
+
"@uniformdev/files": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
35
|
+
"@uniformdev/project-map": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
36
|
+
"@uniformdev/redirect": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
37
|
+
"@uniformdev/richtext": "20.77.2-alpha.3.sha-e9420d8e77",
|
|
38
38
|
"call-bind": "^1.0.2",
|
|
39
39
|
"colorette": "2.0.20",
|
|
40
40
|
"cosmiconfig": "9.0.2",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "e9420d8e77e7b9b0c5ea14bfe38f1f16a9a236ee"
|
|
82
82
|
}
|