@dxos/cli 0.5.3-main.6e12b97 → 0.5.3-main.6f960f5
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/oclif.manifest.json +102 -102
- package/package.json +23 -23
package/oclif.manifest.json
CHANGED
|
@@ -871,10 +871,16 @@
|
|
|
871
871
|
"stop.js"
|
|
872
872
|
]
|
|
873
873
|
},
|
|
874
|
-
"
|
|
874
|
+
"app:create": {
|
|
875
875
|
"aliases": [],
|
|
876
|
-
"args": {
|
|
877
|
-
|
|
876
|
+
"args": {
|
|
877
|
+
"name": {
|
|
878
|
+
"description": "App name.",
|
|
879
|
+
"name": "name",
|
|
880
|
+
"required": true
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"description": "Manage applications.",
|
|
878
884
|
"flags": {
|
|
879
885
|
"json": {
|
|
880
886
|
"description": "Output as JSON.",
|
|
@@ -969,11 +975,39 @@
|
|
|
969
975
|
"hasDynamicHelp": false,
|
|
970
976
|
"multiple": false,
|
|
971
977
|
"type": "option"
|
|
978
|
+
},
|
|
979
|
+
"tag": {
|
|
980
|
+
"description": "Git tag or branch of the DXOS repo to checkout.",
|
|
981
|
+
"name": "tag",
|
|
982
|
+
"hasDynamicHelp": false,
|
|
983
|
+
"multiple": false,
|
|
984
|
+
"type": "option"
|
|
985
|
+
},
|
|
986
|
+
"template": {
|
|
987
|
+
"char": "t",
|
|
988
|
+
"description": "Template to use when creating the project.",
|
|
989
|
+
"name": "template",
|
|
990
|
+
"default": "hello",
|
|
991
|
+
"hasDynamicHelp": false,
|
|
992
|
+
"multiple": false,
|
|
993
|
+
"options": [
|
|
994
|
+
"hello",
|
|
995
|
+
"bare",
|
|
996
|
+
"tasks"
|
|
997
|
+
],
|
|
998
|
+
"type": "option"
|
|
999
|
+
},
|
|
1000
|
+
"interactive": {
|
|
1001
|
+
"char": "i",
|
|
1002
|
+
"description": "Customize app template options via interactive prompt.",
|
|
1003
|
+
"name": "interactive",
|
|
1004
|
+
"allowNo": false,
|
|
1005
|
+
"type": "boolean"
|
|
972
1006
|
}
|
|
973
1007
|
},
|
|
974
1008
|
"hasDynamicHelp": false,
|
|
975
1009
|
"hiddenAliases": [],
|
|
976
|
-
"id": "
|
|
1010
|
+
"id": "app:create",
|
|
977
1011
|
"pluginAlias": "@dxos/cli",
|
|
978
1012
|
"pluginName": "@dxos/cli",
|
|
979
1013
|
"pluginType": "core",
|
|
@@ -984,20 +1018,14 @@
|
|
|
984
1018
|
"dist",
|
|
985
1019
|
"src",
|
|
986
1020
|
"commands",
|
|
987
|
-
"
|
|
988
|
-
"
|
|
1021
|
+
"app",
|
|
1022
|
+
"create.js"
|
|
989
1023
|
]
|
|
990
1024
|
},
|
|
991
|
-
"app:
|
|
1025
|
+
"app:list": {
|
|
992
1026
|
"aliases": [],
|
|
993
|
-
"args": {
|
|
994
|
-
|
|
995
|
-
"description": "App name.",
|
|
996
|
-
"name": "name",
|
|
997
|
-
"required": true
|
|
998
|
-
}
|
|
999
|
-
},
|
|
1000
|
-
"description": "Manage applications.",
|
|
1027
|
+
"args": {},
|
|
1028
|
+
"description": "List apps.",
|
|
1001
1029
|
"flags": {
|
|
1002
1030
|
"json": {
|
|
1003
1031
|
"description": "Output as JSON.",
|
|
@@ -1092,39 +1120,11 @@
|
|
|
1092
1120
|
"hasDynamicHelp": false,
|
|
1093
1121
|
"multiple": false,
|
|
1094
1122
|
"type": "option"
|
|
1095
|
-
},
|
|
1096
|
-
"tag": {
|
|
1097
|
-
"description": "Git tag or branch of the DXOS repo to checkout.",
|
|
1098
|
-
"name": "tag",
|
|
1099
|
-
"hasDynamicHelp": false,
|
|
1100
|
-
"multiple": false,
|
|
1101
|
-
"type": "option"
|
|
1102
|
-
},
|
|
1103
|
-
"template": {
|
|
1104
|
-
"char": "t",
|
|
1105
|
-
"description": "Template to use when creating the project.",
|
|
1106
|
-
"name": "template",
|
|
1107
|
-
"default": "hello",
|
|
1108
|
-
"hasDynamicHelp": false,
|
|
1109
|
-
"multiple": false,
|
|
1110
|
-
"options": [
|
|
1111
|
-
"hello",
|
|
1112
|
-
"bare",
|
|
1113
|
-
"tasks"
|
|
1114
|
-
],
|
|
1115
|
-
"type": "option"
|
|
1116
|
-
},
|
|
1117
|
-
"interactive": {
|
|
1118
|
-
"char": "i",
|
|
1119
|
-
"description": "Customize app template options via interactive prompt.",
|
|
1120
|
-
"name": "interactive",
|
|
1121
|
-
"allowNo": false,
|
|
1122
|
-
"type": "boolean"
|
|
1123
1123
|
}
|
|
1124
1124
|
},
|
|
1125
1125
|
"hasDynamicHelp": false,
|
|
1126
1126
|
"hiddenAliases": [],
|
|
1127
|
-
"id": "app:
|
|
1127
|
+
"id": "app:list",
|
|
1128
1128
|
"pluginAlias": "@dxos/cli",
|
|
1129
1129
|
"pluginName": "@dxos/cli",
|
|
1130
1130
|
"pluginType": "core",
|
|
@@ -1136,13 +1136,19 @@
|
|
|
1136
1136
|
"src",
|
|
1137
1137
|
"commands",
|
|
1138
1138
|
"app",
|
|
1139
|
-
"
|
|
1139
|
+
"list.js"
|
|
1140
1140
|
]
|
|
1141
1141
|
},
|
|
1142
|
-
"app:
|
|
1142
|
+
"app:open": {
|
|
1143
1143
|
"aliases": [],
|
|
1144
|
-
"args": {
|
|
1145
|
-
|
|
1144
|
+
"args": {
|
|
1145
|
+
"url": {
|
|
1146
|
+
"description": "App URL.",
|
|
1147
|
+
"name": "url",
|
|
1148
|
+
"required": true
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
"description": "Opens app with provided url and process device invitation.",
|
|
1146
1152
|
"flags": {
|
|
1147
1153
|
"json": {
|
|
1148
1154
|
"description": "Output as JSON.",
|
|
@@ -1237,11 +1243,25 @@
|
|
|
1237
1243
|
"hasDynamicHelp": false,
|
|
1238
1244
|
"multiple": false,
|
|
1239
1245
|
"type": "option"
|
|
1246
|
+
},
|
|
1247
|
+
"instances": {
|
|
1248
|
+
"description": "Amount of test instances.",
|
|
1249
|
+
"name": "instances",
|
|
1250
|
+
"default": 1,
|
|
1251
|
+
"hasDynamicHelp": false,
|
|
1252
|
+
"multiple": false,
|
|
1253
|
+
"type": "option"
|
|
1254
|
+
},
|
|
1255
|
+
"invite": {
|
|
1256
|
+
"description": "If `true` proceed device invitation for all instances.",
|
|
1257
|
+
"name": "invite",
|
|
1258
|
+
"allowNo": false,
|
|
1259
|
+
"type": "boolean"
|
|
1240
1260
|
}
|
|
1241
1261
|
},
|
|
1242
1262
|
"hasDynamicHelp": false,
|
|
1243
1263
|
"hiddenAliases": [],
|
|
1244
|
-
"id": "app:
|
|
1264
|
+
"id": "app:open",
|
|
1245
1265
|
"pluginAlias": "@dxos/cli",
|
|
1246
1266
|
"pluginName": "@dxos/cli",
|
|
1247
1267
|
"pluginType": "core",
|
|
@@ -1253,19 +1273,13 @@
|
|
|
1253
1273
|
"src",
|
|
1254
1274
|
"commands",
|
|
1255
1275
|
"app",
|
|
1256
|
-
"
|
|
1276
|
+
"open.js"
|
|
1257
1277
|
]
|
|
1258
1278
|
},
|
|
1259
|
-
"app:
|
|
1279
|
+
"app:publish": {
|
|
1260
1280
|
"aliases": [],
|
|
1261
|
-
"args": {
|
|
1262
|
-
|
|
1263
|
-
"description": "App URL.",
|
|
1264
|
-
"name": "url",
|
|
1265
|
-
"required": true
|
|
1266
|
-
}
|
|
1267
|
-
},
|
|
1268
|
-
"description": "Opens app with provided url and process device invitation.",
|
|
1281
|
+
"args": {},
|
|
1282
|
+
"description": "Publish apps.",
|
|
1269
1283
|
"flags": {
|
|
1270
1284
|
"json": {
|
|
1271
1285
|
"description": "Output as JSON.",
|
|
@@ -1361,24 +1375,37 @@
|
|
|
1361
1375
|
"multiple": false,
|
|
1362
1376
|
"type": "option"
|
|
1363
1377
|
},
|
|
1364
|
-
"
|
|
1365
|
-
"description": "
|
|
1366
|
-
"name": "
|
|
1367
|
-
"default": 1,
|
|
1378
|
+
"configPath": {
|
|
1379
|
+
"description": "Path to dx.yml",
|
|
1380
|
+
"name": "configPath",
|
|
1368
1381
|
"hasDynamicHelp": false,
|
|
1369
1382
|
"multiple": false,
|
|
1370
1383
|
"type": "option"
|
|
1371
1384
|
},
|
|
1372
|
-
"
|
|
1373
|
-
"description": "
|
|
1374
|
-
"name": "
|
|
1385
|
+
"accessToken": {
|
|
1386
|
+
"description": "Access token for publishing.",
|
|
1387
|
+
"name": "accessToken",
|
|
1388
|
+
"hasDynamicHelp": false,
|
|
1389
|
+
"multiple": false,
|
|
1390
|
+
"type": "option"
|
|
1391
|
+
},
|
|
1392
|
+
"skipExisting": {
|
|
1393
|
+
"description": "Do not update content on KUBE if version already exists.",
|
|
1394
|
+
"name": "skipExisting",
|
|
1375
1395
|
"allowNo": false,
|
|
1376
1396
|
"type": "boolean"
|
|
1397
|
+
},
|
|
1398
|
+
"version": {
|
|
1399
|
+
"description": "Version of modules to publish.",
|
|
1400
|
+
"name": "version",
|
|
1401
|
+
"hasDynamicHelp": false,
|
|
1402
|
+
"multiple": false,
|
|
1403
|
+
"type": "option"
|
|
1377
1404
|
}
|
|
1378
1405
|
},
|
|
1379
1406
|
"hasDynamicHelp": false,
|
|
1380
1407
|
"hiddenAliases": [],
|
|
1381
|
-
"id": "app:
|
|
1408
|
+
"id": "app:publish",
|
|
1382
1409
|
"pluginAlias": "@dxos/cli",
|
|
1383
1410
|
"pluginName": "@dxos/cli",
|
|
1384
1411
|
"pluginType": "core",
|
|
@@ -1390,13 +1417,13 @@
|
|
|
1390
1417
|
"src",
|
|
1391
1418
|
"commands",
|
|
1392
1419
|
"app",
|
|
1393
|
-
"
|
|
1420
|
+
"publish.js"
|
|
1394
1421
|
]
|
|
1395
1422
|
},
|
|
1396
|
-
"
|
|
1423
|
+
"config": {
|
|
1397
1424
|
"aliases": [],
|
|
1398
1425
|
"args": {},
|
|
1399
|
-
"description": "
|
|
1426
|
+
"description": "Show config file.",
|
|
1400
1427
|
"flags": {
|
|
1401
1428
|
"json": {
|
|
1402
1429
|
"description": "Output as JSON.",
|
|
@@ -1491,38 +1518,11 @@
|
|
|
1491
1518
|
"hasDynamicHelp": false,
|
|
1492
1519
|
"multiple": false,
|
|
1493
1520
|
"type": "option"
|
|
1494
|
-
},
|
|
1495
|
-
"configPath": {
|
|
1496
|
-
"description": "Path to dx.yml",
|
|
1497
|
-
"name": "configPath",
|
|
1498
|
-
"hasDynamicHelp": false,
|
|
1499
|
-
"multiple": false,
|
|
1500
|
-
"type": "option"
|
|
1501
|
-
},
|
|
1502
|
-
"accessToken": {
|
|
1503
|
-
"description": "Access token for publishing.",
|
|
1504
|
-
"name": "accessToken",
|
|
1505
|
-
"hasDynamicHelp": false,
|
|
1506
|
-
"multiple": false,
|
|
1507
|
-
"type": "option"
|
|
1508
|
-
},
|
|
1509
|
-
"skipExisting": {
|
|
1510
|
-
"description": "Do not update content on KUBE if version already exists.",
|
|
1511
|
-
"name": "skipExisting",
|
|
1512
|
-
"allowNo": false,
|
|
1513
|
-
"type": "boolean"
|
|
1514
|
-
},
|
|
1515
|
-
"version": {
|
|
1516
|
-
"description": "Version of modules to publish.",
|
|
1517
|
-
"name": "version",
|
|
1518
|
-
"hasDynamicHelp": false,
|
|
1519
|
-
"multiple": false,
|
|
1520
|
-
"type": "option"
|
|
1521
1521
|
}
|
|
1522
1522
|
},
|
|
1523
1523
|
"hasDynamicHelp": false,
|
|
1524
1524
|
"hiddenAliases": [],
|
|
1525
|
-
"id": "
|
|
1525
|
+
"id": "config",
|
|
1526
1526
|
"pluginAlias": "@dxos/cli",
|
|
1527
1527
|
"pluginName": "@dxos/cli",
|
|
1528
1528
|
"pluginType": "core",
|
|
@@ -1533,8 +1533,8 @@
|
|
|
1533
1533
|
"dist",
|
|
1534
1534
|
"src",
|
|
1535
1535
|
"commands",
|
|
1536
|
-
"
|
|
1537
|
-
"
|
|
1536
|
+
"config",
|
|
1537
|
+
"index.js"
|
|
1538
1538
|
]
|
|
1539
1539
|
},
|
|
1540
1540
|
"debug:diagnostics": {
|
|
@@ -5595,7 +5595,7 @@
|
|
|
5595
5595
|
"name": {
|
|
5596
5596
|
"description": "Tunnel name",
|
|
5597
5597
|
"name": "name",
|
|
5598
|
-
"default": "
|
|
5598
|
+
"default": "vermont-idaho-low-steak",
|
|
5599
5599
|
"hasDynamicHelp": false,
|
|
5600
5600
|
"multiple": false,
|
|
5601
5601
|
"type": "option"
|
|
@@ -6067,5 +6067,5 @@
|
|
|
6067
6067
|
]
|
|
6068
6068
|
}
|
|
6069
6069
|
},
|
|
6070
|
-
"version": "0.5.3-main.
|
|
6070
|
+
"version": "0.5.3-main.6f960f5"
|
|
6071
6071
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/cli",
|
|
3
|
-
"version": "0.5.3-main.
|
|
3
|
+
"version": "0.5.3-main.6f960f5",
|
|
4
4
|
"description": "DXOS CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dxos",
|
|
@@ -49,28 +49,28 @@
|
|
|
49
49
|
"uuid": "^8.3.2",
|
|
50
50
|
"ws": "^8.14.2",
|
|
51
51
|
"wtfnode": "^0.9.1",
|
|
52
|
-
"@dxos/agent": "0.5.3-main.
|
|
53
|
-
"@dxos/
|
|
54
|
-
"@dxos/client": "0.5.3-main.
|
|
55
|
-
"@dxos/
|
|
56
|
-
"@dxos/client
|
|
57
|
-
"@dxos/client-services": "0.5.3-main.
|
|
58
|
-
"@dxos/config": "0.5.3-main.
|
|
59
|
-
"@dxos/context": "0.5.3-main.
|
|
60
|
-
"@dxos/
|
|
61
|
-
"@dxos/
|
|
62
|
-
"@dxos/
|
|
63
|
-
"@dxos/
|
|
64
|
-
"@dxos/log": "0.5.3-main.
|
|
65
|
-
"@dxos/
|
|
66
|
-
"@dxos/
|
|
67
|
-
"@dxos/process": "0.5.3-main.
|
|
68
|
-
"@dxos/plate": "0.5.3-main.
|
|
69
|
-
"@dxos/random": "0.5.3-main.
|
|
70
|
-
"@dxos/protocols": "0.5.3-main.
|
|
71
|
-
"@dxos/
|
|
72
|
-
"@dxos/
|
|
73
|
-
"@dxos/util": "0.5.3-main.
|
|
52
|
+
"@dxos/agent": "0.5.3-main.6f960f5",
|
|
53
|
+
"@dxos/bare-template": "0.5.3-main.6f960f5",
|
|
54
|
+
"@dxos/client-protocol": "0.5.3-main.6f960f5",
|
|
55
|
+
"@dxos/async": "0.5.3-main.6f960f5",
|
|
56
|
+
"@dxos/client": "0.5.3-main.6f960f5",
|
|
57
|
+
"@dxos/client-services": "0.5.3-main.6f960f5",
|
|
58
|
+
"@dxos/config": "0.5.3-main.6f960f5",
|
|
59
|
+
"@dxos/context": "0.5.3-main.6f960f5",
|
|
60
|
+
"@dxos/debug": "0.5.3-main.6f960f5",
|
|
61
|
+
"@dxos/hello-template": "0.5.3-main.6f960f5",
|
|
62
|
+
"@dxos/invariant": "0.5.3-main.6f960f5",
|
|
63
|
+
"@dxos/functions": "0.5.3-main.6f960f5",
|
|
64
|
+
"@dxos/log": "0.5.3-main.6f960f5",
|
|
65
|
+
"@dxos/network-manager": "0.5.3-main.6f960f5",
|
|
66
|
+
"@dxos/observability": "0.5.3-main.6f960f5",
|
|
67
|
+
"@dxos/process": "0.5.3-main.6f960f5",
|
|
68
|
+
"@dxos/plate": "0.5.3-main.6f960f5",
|
|
69
|
+
"@dxos/random": "0.5.3-main.6f960f5",
|
|
70
|
+
"@dxos/protocols": "0.5.3-main.6f960f5",
|
|
71
|
+
"@dxos/tasks-template": "0.5.3-main.6f960f5",
|
|
72
|
+
"@dxos/rpc": "0.5.3-main.6f960f5",
|
|
73
|
+
"@dxos/util": "0.5.3-main.6f960f5"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@oclif/test": "^3.2.15",
|