@superblocksteam/cli 1.12.0 → 1.13.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 +1 -1
- package/assets/custom-components/setup/package.json +1 -1
- package/oclif.manifest.json +40 -40
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ $ npm install -g @superblocksteam/cli
|
|
|
12
12
|
$ superblocks COMMAND
|
|
13
13
|
running command...
|
|
14
14
|
$ superblocks (--version)
|
|
15
|
-
@superblocksteam/cli/1.
|
|
15
|
+
@superblocksteam/cli/1.13.0 linux-x64 node-v20.19.0
|
|
16
16
|
$ superblocks --help [COMMAND]
|
|
17
17
|
USAGE
|
|
18
18
|
$ superblocks COMMAND
|
package/oclif.manifest.json
CHANGED
|
@@ -303,6 +303,45 @@
|
|
|
303
303
|
"rm.mjs"
|
|
304
304
|
]
|
|
305
305
|
},
|
|
306
|
+
"config:set": {
|
|
307
|
+
"aliases": [],
|
|
308
|
+
"args": {
|
|
309
|
+
"property": {
|
|
310
|
+
"description": "Superblocks config name, e.g. domain",
|
|
311
|
+
"name": "property",
|
|
312
|
+
"options": [
|
|
313
|
+
"domain"
|
|
314
|
+
],
|
|
315
|
+
"required": true
|
|
316
|
+
},
|
|
317
|
+
"value": {
|
|
318
|
+
"description": "Superblocks config value",
|
|
319
|
+
"name": "value",
|
|
320
|
+
"required": true
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"description": "Sets the specified property in your Superblocks configuration. A property governs the behavior of the Superblocks CLI, such as Superblocks region to interact with",
|
|
324
|
+
"examples": [
|
|
325
|
+
"<%= config.bin %> <%= command.id %> domain eu.superblocks.com",
|
|
326
|
+
"<%= config.bin %> <%= command.id %> domain app.superblocks.com"
|
|
327
|
+
],
|
|
328
|
+
"flags": {},
|
|
329
|
+
"hasDynamicHelp": false,
|
|
330
|
+
"hiddenAliases": [],
|
|
331
|
+
"id": "config:set",
|
|
332
|
+
"pluginAlias": "@superblocksteam/cli",
|
|
333
|
+
"pluginName": "@superblocksteam/cli",
|
|
334
|
+
"pluginType": "core",
|
|
335
|
+
"strict": true,
|
|
336
|
+
"enableJsonFlag": false,
|
|
337
|
+
"isESM": true,
|
|
338
|
+
"relativePath": [
|
|
339
|
+
"dist",
|
|
340
|
+
"commands",
|
|
341
|
+
"config",
|
|
342
|
+
"set.mjs"
|
|
343
|
+
]
|
|
344
|
+
},
|
|
306
345
|
"components:create": {
|
|
307
346
|
"aliases": [],
|
|
308
347
|
"args": {},
|
|
@@ -405,46 +444,7 @@
|
|
|
405
444
|
"components",
|
|
406
445
|
"watch.mjs"
|
|
407
446
|
]
|
|
408
|
-
},
|
|
409
|
-
"config:set": {
|
|
410
|
-
"aliases": [],
|
|
411
|
-
"args": {
|
|
412
|
-
"property": {
|
|
413
|
-
"description": "Superblocks config name, e.g. domain",
|
|
414
|
-
"name": "property",
|
|
415
|
-
"options": [
|
|
416
|
-
"domain"
|
|
417
|
-
],
|
|
418
|
-
"required": true
|
|
419
|
-
},
|
|
420
|
-
"value": {
|
|
421
|
-
"description": "Superblocks config value",
|
|
422
|
-
"name": "value",
|
|
423
|
-
"required": true
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
"description": "Sets the specified property in your Superblocks configuration. A property governs the behavior of the Superblocks CLI, such as Superblocks region to interact with",
|
|
427
|
-
"examples": [
|
|
428
|
-
"<%= config.bin %> <%= command.id %> domain eu.superblocks.com",
|
|
429
|
-
"<%= config.bin %> <%= command.id %> domain app.superblocks.com"
|
|
430
|
-
],
|
|
431
|
-
"flags": {},
|
|
432
|
-
"hasDynamicHelp": false,
|
|
433
|
-
"hiddenAliases": [],
|
|
434
|
-
"id": "config:set",
|
|
435
|
-
"pluginAlias": "@superblocksteam/cli",
|
|
436
|
-
"pluginName": "@superblocksteam/cli",
|
|
437
|
-
"pluginType": "core",
|
|
438
|
-
"strict": true,
|
|
439
|
-
"enableJsonFlag": false,
|
|
440
|
-
"isESM": true,
|
|
441
|
-
"relativePath": [
|
|
442
|
-
"dist",
|
|
443
|
-
"commands",
|
|
444
|
-
"config",
|
|
445
|
-
"set.mjs"
|
|
446
|
-
]
|
|
447
447
|
}
|
|
448
448
|
},
|
|
449
|
-
"version": "1.
|
|
449
|
+
"version": "1.13.0"
|
|
450
450
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Official Superblocks CLI",
|
|
5
5
|
"bin": {
|
|
6
6
|
"superblocks": "./bin/run"
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"slugify": "^1.6.6",
|
|
30
30
|
"vite": "^6.2.0",
|
|
31
31
|
"yaml": "^2.6.1",
|
|
32
|
-
"@superblocksteam/sdk": "1.
|
|
33
|
-
"@superblocksteam/util": "1.
|
|
32
|
+
"@superblocksteam/sdk": "1.13.0",
|
|
33
|
+
"@superblocksteam/util": "1.13.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@oclif/test": "^4.1.11",
|