@uniformdev/cli 18.38.2-alpha.6 → 19.1.0
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 -8
- package/package.json +7 -6
package/dist/index.mjs
CHANGED
|
@@ -957,12 +957,12 @@ var CompositionGetModule = {
|
|
|
957
957
|
default: false,
|
|
958
958
|
describe: "Include individual component UIDs"
|
|
959
959
|
},
|
|
960
|
-
|
|
960
|
+
resolveData: {
|
|
961
961
|
type: "boolean",
|
|
962
962
|
default: false,
|
|
963
963
|
describe: "Resolve all data resources used by the composition"
|
|
964
964
|
},
|
|
965
|
-
|
|
965
|
+
diagnostics: {
|
|
966
966
|
type: "boolean",
|
|
967
967
|
default: false,
|
|
968
968
|
describe: "Include diagnostics information when resolving data"
|
|
@@ -985,8 +985,8 @@ var CompositionGetModule = {
|
|
|
985
985
|
resolvePatterns,
|
|
986
986
|
resolveOverrides,
|
|
987
987
|
componentIDs,
|
|
988
|
-
|
|
989
|
-
|
|
988
|
+
resolveData,
|
|
989
|
+
diagnostics
|
|
990
990
|
}) => {
|
|
991
991
|
const fetch3 = nodeFetchProxy(proxy);
|
|
992
992
|
const client = new UncachedCanvasClient7({ apiKey, edgeApiHost, apiHost, fetch: fetch3, projectId });
|
|
@@ -997,8 +997,8 @@ var CompositionGetModule = {
|
|
|
997
997
|
skipPatternResolution: !resolvePatterns,
|
|
998
998
|
skipOverridesResolution: !resolveOverrides,
|
|
999
999
|
withComponentIDs: componentIDs,
|
|
1000
|
-
|
|
1001
|
-
|
|
1000
|
+
skipDataResolution: !resolveData,
|
|
1001
|
+
diagnostics
|
|
1002
1002
|
})
|
|
1003
1003
|
);
|
|
1004
1004
|
emitWithFormat(res, format, filename);
|
|
@@ -3233,7 +3233,7 @@ import { PostHog } from "posthog-node";
|
|
|
3233
3233
|
// package.json
|
|
3234
3234
|
var package_default = {
|
|
3235
3235
|
name: "@uniformdev/cli",
|
|
3236
|
-
version: "
|
|
3236
|
+
version: "19.1.0",
|
|
3237
3237
|
description: "Uniform command line interface tool",
|
|
3238
3238
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
3239
3239
|
main: "./cli.js",
|
|
@@ -3252,6 +3252,7 @@ var package_default = {
|
|
|
3252
3252
|
"@uniformdev/canvas": "workspace:*",
|
|
3253
3253
|
"@uniformdev/context": "workspace:*",
|
|
3254
3254
|
"@uniformdev/project-map": "workspace:*",
|
|
3255
|
+
"@uniformdev/redirect": "workspace:*",
|
|
3255
3256
|
chalk: "^5.2.0",
|
|
3256
3257
|
diff: "^5.0.0",
|
|
3257
3258
|
dotenv: "^16.0.3",
|
|
@@ -3279,7 +3280,7 @@ var package_default = {
|
|
|
3279
3280
|
"@types/js-yaml": "4.0.5",
|
|
3280
3281
|
"@types/jsonwebtoken": "9.0.1",
|
|
3281
3282
|
"@types/lodash.isequalwith": "4.4.7",
|
|
3282
|
-
"@types/node": "18.15.
|
|
3283
|
+
"@types/node": "18.15.13",
|
|
3283
3284
|
"@types/yargs": "17.0.24",
|
|
3284
3285
|
"p-limit": "4.0.0"
|
|
3285
3286
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.1.0",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -16,9 +16,10 @@
|
|
|
16
16
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\""
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@uniformdev/canvas": "
|
|
20
|
-
"@uniformdev/context": "
|
|
21
|
-
"@uniformdev/project-map": "
|
|
19
|
+
"@uniformdev/canvas": "19.1.0",
|
|
20
|
+
"@uniformdev/context": "19.1.0",
|
|
21
|
+
"@uniformdev/project-map": "19.1.0",
|
|
22
|
+
"@uniformdev/redirect": "19.1.0",
|
|
22
23
|
"chalk": "^5.2.0",
|
|
23
24
|
"diff": "^5.0.0",
|
|
24
25
|
"dotenv": "^16.0.3",
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"@types/js-yaml": "4.0.5",
|
|
47
48
|
"@types/jsonwebtoken": "9.0.1",
|
|
48
49
|
"@types/lodash.isequalwith": "4.4.7",
|
|
49
|
-
"@types/node": "18.15.
|
|
50
|
+
"@types/node": "18.15.13",
|
|
50
51
|
"@types/yargs": "17.0.24",
|
|
51
52
|
"p-limit": "4.0.0"
|
|
52
53
|
},
|
|
@@ -59,5 +60,5 @@
|
|
|
59
60
|
"publishConfig": {
|
|
60
61
|
"access": "public"
|
|
61
62
|
},
|
|
62
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "0a06bc3cbf5a3ef7eb72b7ba237e76df645a4a88"
|
|
63
64
|
}
|