@uniformdev/cli 18.33.0 → 18.33.1-alpha.7
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 +5 -5
package/dist/index.mjs
CHANGED
|
@@ -952,12 +952,12 @@ var CompositionGetModule = {
|
|
|
952
952
|
default: false,
|
|
953
953
|
describe: "Include individual component UIDs"
|
|
954
954
|
},
|
|
955
|
-
|
|
955
|
+
resolveData: {
|
|
956
956
|
type: "boolean",
|
|
957
957
|
default: false,
|
|
958
958
|
describe: "Resolve all data resources used by the composition"
|
|
959
959
|
},
|
|
960
|
-
|
|
960
|
+
diagnostics: {
|
|
961
961
|
type: "boolean",
|
|
962
962
|
default: false,
|
|
963
963
|
describe: "Include diagnostics information when resolving data"
|
|
@@ -979,8 +979,8 @@ var CompositionGetModule = {
|
|
|
979
979
|
project: projectId,
|
|
980
980
|
resolvePatterns,
|
|
981
981
|
componentIDs,
|
|
982
|
-
|
|
983
|
-
|
|
982
|
+
resolveData,
|
|
983
|
+
diagnostics
|
|
984
984
|
}) => {
|
|
985
985
|
const fetch3 = nodeFetchProxy(proxy);
|
|
986
986
|
const client = new UncachedCanvasClient7({ apiKey, edgeApiHost, apiHost, fetch: fetch3, projectId });
|
|
@@ -990,8 +990,8 @@ var CompositionGetModule = {
|
|
|
990
990
|
state: convertCompositionState(state),
|
|
991
991
|
skipPatternResolution: !resolvePatterns,
|
|
992
992
|
withComponentIDs: componentIDs,
|
|
993
|
-
|
|
994
|
-
|
|
993
|
+
skipDataResolution: !resolveData,
|
|
994
|
+
diagnostics
|
|
995
995
|
})
|
|
996
996
|
);
|
|
997
997
|
emitWithFormat(res, format, filename);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "18.33.
|
|
3
|
+
"version": "18.33.1-alpha.7+7127237a1",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\""
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@uniformdev/canvas": "18.33.
|
|
20
|
-
"@uniformdev/context": "18.33.
|
|
21
|
-
"@uniformdev/project-map": "18.33.
|
|
19
|
+
"@uniformdev/canvas": "18.33.1-alpha.7+7127237a1",
|
|
20
|
+
"@uniformdev/context": "18.33.1-alpha.7+7127237a1",
|
|
21
|
+
"@uniformdev/project-map": "18.33.1-alpha.7+7127237a1",
|
|
22
22
|
"chalk": "^5.2.0",
|
|
23
23
|
"diff": "^5.0.0",
|
|
24
24
|
"dotenv": "^16.0.3",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "7127237a1e099d2a11fa8c06d49cb01cf16c0852"
|
|
63
63
|
}
|