@sanity/runtime-cli 3.2.0 → 4.0.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/README.md +29 -21
- package/dist/actions/blueprints/blueprint.d.ts +32 -16
- package/dist/actions/blueprints/blueprint.js +157 -106
- package/dist/actions/blueprints/stacks.js +1 -1
- package/dist/actions/functions/env/index.d.ts +2 -2
- package/dist/actions/functions/env/index.js +2 -2
- package/dist/commands/blueprints/add.js +3 -4
- package/dist/commands/blueprints/config.js +29 -17
- package/dist/commands/blueprints/deploy.d.ts +3 -0
- package/dist/commands/blueprints/deploy.js +49 -46
- package/dist/commands/blueprints/info.js +12 -6
- package/dist/commands/blueprints/init.js +54 -11
- package/dist/commands/blueprints/logs.js +6 -6
- package/dist/commands/blueprints/stacks.d.ts +3 -0
- package/dist/commands/blueprints/stacks.js +34 -10
- package/dist/utils/display/blueprints-formatting.js +9 -6
- package/dist/utils/display/colors.d.ts +1 -0
- package/dist/utils/display/colors.js +3 -0
- package/dist/utils/types.d.ts +32 -0
- package/oclif.manifest.json +23 -6
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -72,7 +72,14 @@
|
|
|
72
72
|
"examples": [
|
|
73
73
|
"<%= config.bin %> <%= command.id %>"
|
|
74
74
|
],
|
|
75
|
-
"flags": {
|
|
75
|
+
"flags": {
|
|
76
|
+
"no-wait": {
|
|
77
|
+
"description": "Do not wait for deployment to complete",
|
|
78
|
+
"name": "no-wait",
|
|
79
|
+
"allowNo": false,
|
|
80
|
+
"type": "boolean"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
76
83
|
"hasDynamicHelp": false,
|
|
77
84
|
"hiddenAliases": [],
|
|
78
85
|
"id": "blueprints:deploy",
|
|
@@ -132,10 +139,10 @@
|
|
|
132
139
|
"blueprints:info": {
|
|
133
140
|
"aliases": [],
|
|
134
141
|
"args": {},
|
|
135
|
-
"description": "Show information about a Blueprint",
|
|
142
|
+
"description": "Show information about a deployed Blueprint Stack",
|
|
136
143
|
"examples": [
|
|
137
144
|
"<%= config.bin %> <%= command.id %>",
|
|
138
|
-
"<%= config.bin %> <%= command.id %> --id
|
|
145
|
+
"<%= config.bin %> <%= command.id %> --id ST-a1b2c3"
|
|
139
146
|
],
|
|
140
147
|
"flags": {
|
|
141
148
|
"id": {
|
|
@@ -250,9 +257,19 @@
|
|
|
250
257
|
"args": {},
|
|
251
258
|
"description": "List all Blueprint stacks",
|
|
252
259
|
"examples": [
|
|
253
|
-
"<%= config.bin %> <%= command.id %>"
|
|
260
|
+
"<%= config.bin %> <%= command.id %>",
|
|
261
|
+
"<%= config.bin %> <%= command.id %> --projectId a1b2c3"
|
|
254
262
|
],
|
|
255
|
-
"flags": {
|
|
263
|
+
"flags": {
|
|
264
|
+
"projectId": {
|
|
265
|
+
"description": "Project ID to show stacks for",
|
|
266
|
+
"name": "projectId",
|
|
267
|
+
"required": false,
|
|
268
|
+
"hasDynamicHelp": false,
|
|
269
|
+
"multiple": false,
|
|
270
|
+
"type": "option"
|
|
271
|
+
}
|
|
272
|
+
},
|
|
256
273
|
"hasDynamicHelp": false,
|
|
257
274
|
"hiddenAliases": [],
|
|
258
275
|
"id": "blueprints:stacks",
|
|
@@ -591,5 +608,5 @@
|
|
|
591
608
|
]
|
|
592
609
|
}
|
|
593
610
|
},
|
|
594
|
-
"version": "
|
|
611
|
+
"version": "4.0.0"
|
|
595
612
|
}
|