@dxos/cli 0.2.1-main.4109374 → 0.2.1-main.617b24c
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
CHANGED
|
@@ -92,7 +92,7 @@ $ npm install -g @dxos/cli
|
|
|
92
92
|
$ dx COMMAND
|
|
93
93
|
running command...
|
|
94
94
|
$ dx (--version)
|
|
95
|
-
@dxos/cli/0.2.1-main.
|
|
95
|
+
@dxos/cli/0.2.1-main.617b24c linux-x64 node-v18.17.1
|
|
96
96
|
$ dx --help [COMMAND]
|
|
97
97
|
USAGE
|
|
98
98
|
$ dx COMMAND
|
|
@@ -132,15 +132,6 @@ USAGE
|
|
|
132
132
|
* [`dx help [COMMANDS]`](#dx-help-commands)
|
|
133
133
|
* [`dx kube auth`](#dx-kube-auth)
|
|
134
134
|
* [`dx kube deploy`](#dx-kube-deploy)
|
|
135
|
-
* [`dx plugins`](#dx-plugins)
|
|
136
|
-
* [`dx plugins:install PLUGIN...`](#dx-pluginsinstall-plugin)
|
|
137
|
-
* [`dx plugins:inspect PLUGIN...`](#dx-pluginsinspect-plugin)
|
|
138
|
-
* [`dx plugins:install PLUGIN...`](#dx-pluginsinstall-plugin-1)
|
|
139
|
-
* [`dx plugins:link PLUGIN`](#dx-pluginslink-plugin)
|
|
140
|
-
* [`dx plugins:uninstall PLUGIN...`](#dx-pluginsuninstall-plugin)
|
|
141
|
-
* [`dx plugins:uninstall PLUGIN...`](#dx-pluginsuninstall-plugin-1)
|
|
142
|
-
* [`dx plugins:uninstall PLUGIN...`](#dx-pluginsuninstall-plugin-2)
|
|
143
|
-
* [`dx plugins update`](#dx-plugins-update)
|
|
144
135
|
* [`dx reset`](#dx-reset)
|
|
145
136
|
* [`dx shell`](#dx-shell)
|
|
146
137
|
* [`dx space close [KEY]`](#dx-space-close-key)
|
|
@@ -278,7 +269,7 @@ Manage applications.
|
|
|
278
269
|
```
|
|
279
270
|
USAGE
|
|
280
271
|
$ dx app create NAME [--json] [--dry-run] [-v] [--config <value> --profile <value>] [--no-agent] [--timeout
|
|
281
|
-
<value>] [--no-wait] [--tag <value>] [-t hello|bare] [-i]
|
|
272
|
+
<value>] [--no-wait] [--tag <value>] [-t hello|bare|tasks] [-i]
|
|
282
273
|
|
|
283
274
|
ARGUMENTS
|
|
284
275
|
NAME App name.
|
|
@@ -286,7 +277,7 @@ ARGUMENTS
|
|
|
286
277
|
FLAGS
|
|
287
278
|
-i, --interactive Customize app template options via interactive prompt.
|
|
288
279
|
-t, --template=<option> [default: hello] Template to use when creating the project.
|
|
289
|
-
<options: hello|bare>
|
|
280
|
+
<options: hello|bare|tasks>
|
|
290
281
|
-v, --verbose Verbose output
|
|
291
282
|
--config=path [default: /home/runner/.config/dx/profile/default.yml] Config file.
|
|
292
283
|
--dry-run Dry run.
|
|
@@ -967,242 +958,6 @@ DESCRIPTION
|
|
|
967
958
|
Deploy KUBE.
|
|
968
959
|
```
|
|
969
960
|
|
|
970
|
-
## `dx plugins`
|
|
971
|
-
|
|
972
|
-
List installed plugins.
|
|
973
|
-
|
|
974
|
-
```
|
|
975
|
-
USAGE
|
|
976
|
-
$ dx plugins [--json] [--core]
|
|
977
|
-
|
|
978
|
-
FLAGS
|
|
979
|
-
--core Show core plugins.
|
|
980
|
-
|
|
981
|
-
GLOBAL FLAGS
|
|
982
|
-
--json Format output as json.
|
|
983
|
-
|
|
984
|
-
DESCRIPTION
|
|
985
|
-
List installed plugins.
|
|
986
|
-
|
|
987
|
-
EXAMPLES
|
|
988
|
-
$ dx plugins
|
|
989
|
-
```
|
|
990
|
-
|
|
991
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/index.ts)_
|
|
992
|
-
|
|
993
|
-
## `dx plugins:install PLUGIN...`
|
|
994
|
-
|
|
995
|
-
Installs a plugin into the CLI.
|
|
996
|
-
|
|
997
|
-
```
|
|
998
|
-
USAGE
|
|
999
|
-
$ dx plugins:install PLUGIN...
|
|
1000
|
-
|
|
1001
|
-
ARGUMENTS
|
|
1002
|
-
PLUGIN Plugin to install.
|
|
1003
|
-
|
|
1004
|
-
FLAGS
|
|
1005
|
-
-f, --force Run yarn install with force flag.
|
|
1006
|
-
-h, --help Show CLI help.
|
|
1007
|
-
-v, --verbose
|
|
1008
|
-
|
|
1009
|
-
DESCRIPTION
|
|
1010
|
-
Installs a plugin into the CLI.
|
|
1011
|
-
Can be installed from npm or a git url.
|
|
1012
|
-
|
|
1013
|
-
Installation of a user-installed plugin will override a core plugin.
|
|
1014
|
-
|
|
1015
|
-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
|
|
1016
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
1017
|
-
the CLI without the need to patch and update the whole CLI.
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
ALIASES
|
|
1021
|
-
$ dx plugins add
|
|
1022
|
-
|
|
1023
|
-
EXAMPLES
|
|
1024
|
-
$ dx plugins:install myplugin
|
|
1025
|
-
|
|
1026
|
-
$ dx plugins:install https://github.com/someuser/someplugin
|
|
1027
|
-
|
|
1028
|
-
$ dx plugins:install someuser/someplugin
|
|
1029
|
-
```
|
|
1030
|
-
|
|
1031
|
-
## `dx plugins:inspect PLUGIN...`
|
|
1032
|
-
|
|
1033
|
-
Displays installation properties of a plugin.
|
|
1034
|
-
|
|
1035
|
-
```
|
|
1036
|
-
USAGE
|
|
1037
|
-
$ dx plugins:inspect PLUGIN...
|
|
1038
|
-
|
|
1039
|
-
ARGUMENTS
|
|
1040
|
-
PLUGIN [default: .] Plugin to inspect.
|
|
1041
|
-
|
|
1042
|
-
FLAGS
|
|
1043
|
-
-h, --help Show CLI help.
|
|
1044
|
-
-v, --verbose
|
|
1045
|
-
|
|
1046
|
-
GLOBAL FLAGS
|
|
1047
|
-
--json Format output as json.
|
|
1048
|
-
|
|
1049
|
-
DESCRIPTION
|
|
1050
|
-
Displays installation properties of a plugin.
|
|
1051
|
-
|
|
1052
|
-
EXAMPLES
|
|
1053
|
-
$ dx plugins:inspect myplugin
|
|
1054
|
-
```
|
|
1055
|
-
|
|
1056
|
-
## `dx plugins:install PLUGIN...`
|
|
1057
|
-
|
|
1058
|
-
Installs a plugin into the CLI.
|
|
1059
|
-
|
|
1060
|
-
```
|
|
1061
|
-
USAGE
|
|
1062
|
-
$ dx plugins:install PLUGIN...
|
|
1063
|
-
|
|
1064
|
-
ARGUMENTS
|
|
1065
|
-
PLUGIN Plugin to install.
|
|
1066
|
-
|
|
1067
|
-
FLAGS
|
|
1068
|
-
-f, --force Run yarn install with force flag.
|
|
1069
|
-
-h, --help Show CLI help.
|
|
1070
|
-
-v, --verbose
|
|
1071
|
-
|
|
1072
|
-
DESCRIPTION
|
|
1073
|
-
Installs a plugin into the CLI.
|
|
1074
|
-
Can be installed from npm or a git url.
|
|
1075
|
-
|
|
1076
|
-
Installation of a user-installed plugin will override a core plugin.
|
|
1077
|
-
|
|
1078
|
-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
|
|
1079
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
1080
|
-
the CLI without the need to patch and update the whole CLI.
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
ALIASES
|
|
1084
|
-
$ dx plugins add
|
|
1085
|
-
|
|
1086
|
-
EXAMPLES
|
|
1087
|
-
$ dx plugins:install myplugin
|
|
1088
|
-
|
|
1089
|
-
$ dx plugins:install https://github.com/someuser/someplugin
|
|
1090
|
-
|
|
1091
|
-
$ dx plugins:install someuser/someplugin
|
|
1092
|
-
```
|
|
1093
|
-
|
|
1094
|
-
## `dx plugins:link PLUGIN`
|
|
1095
|
-
|
|
1096
|
-
Links a plugin into the CLI for development.
|
|
1097
|
-
|
|
1098
|
-
```
|
|
1099
|
-
USAGE
|
|
1100
|
-
$ dx plugins:link PLUGIN
|
|
1101
|
-
|
|
1102
|
-
ARGUMENTS
|
|
1103
|
-
PATH [default: .] path to plugin
|
|
1104
|
-
|
|
1105
|
-
FLAGS
|
|
1106
|
-
-h, --help Show CLI help.
|
|
1107
|
-
-v, --verbose
|
|
1108
|
-
|
|
1109
|
-
DESCRIPTION
|
|
1110
|
-
Links a plugin into the CLI for development.
|
|
1111
|
-
Installation of a linked plugin will override a user-installed or core plugin.
|
|
1112
|
-
|
|
1113
|
-
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
|
|
1114
|
-
command will override the user-installed or core plugin implementation. This is useful for development work.
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
EXAMPLES
|
|
1118
|
-
$ dx plugins:link myplugin
|
|
1119
|
-
```
|
|
1120
|
-
|
|
1121
|
-
## `dx plugins:uninstall PLUGIN...`
|
|
1122
|
-
|
|
1123
|
-
Removes a plugin from the CLI.
|
|
1124
|
-
|
|
1125
|
-
```
|
|
1126
|
-
USAGE
|
|
1127
|
-
$ dx plugins:uninstall PLUGIN...
|
|
1128
|
-
|
|
1129
|
-
ARGUMENTS
|
|
1130
|
-
PLUGIN plugin to uninstall
|
|
1131
|
-
|
|
1132
|
-
FLAGS
|
|
1133
|
-
-h, --help Show CLI help.
|
|
1134
|
-
-v, --verbose
|
|
1135
|
-
|
|
1136
|
-
DESCRIPTION
|
|
1137
|
-
Removes a plugin from the CLI.
|
|
1138
|
-
|
|
1139
|
-
ALIASES
|
|
1140
|
-
$ dx plugins unlink
|
|
1141
|
-
$ dx plugins remove
|
|
1142
|
-
```
|
|
1143
|
-
|
|
1144
|
-
## `dx plugins:uninstall PLUGIN...`
|
|
1145
|
-
|
|
1146
|
-
Removes a plugin from the CLI.
|
|
1147
|
-
|
|
1148
|
-
```
|
|
1149
|
-
USAGE
|
|
1150
|
-
$ dx plugins:uninstall PLUGIN...
|
|
1151
|
-
|
|
1152
|
-
ARGUMENTS
|
|
1153
|
-
PLUGIN plugin to uninstall
|
|
1154
|
-
|
|
1155
|
-
FLAGS
|
|
1156
|
-
-h, --help Show CLI help.
|
|
1157
|
-
-v, --verbose
|
|
1158
|
-
|
|
1159
|
-
DESCRIPTION
|
|
1160
|
-
Removes a plugin from the CLI.
|
|
1161
|
-
|
|
1162
|
-
ALIASES
|
|
1163
|
-
$ dx plugins unlink
|
|
1164
|
-
$ dx plugins remove
|
|
1165
|
-
```
|
|
1166
|
-
|
|
1167
|
-
## `dx plugins:uninstall PLUGIN...`
|
|
1168
|
-
|
|
1169
|
-
Removes a plugin from the CLI.
|
|
1170
|
-
|
|
1171
|
-
```
|
|
1172
|
-
USAGE
|
|
1173
|
-
$ dx plugins:uninstall PLUGIN...
|
|
1174
|
-
|
|
1175
|
-
ARGUMENTS
|
|
1176
|
-
PLUGIN plugin to uninstall
|
|
1177
|
-
|
|
1178
|
-
FLAGS
|
|
1179
|
-
-h, --help Show CLI help.
|
|
1180
|
-
-v, --verbose
|
|
1181
|
-
|
|
1182
|
-
DESCRIPTION
|
|
1183
|
-
Removes a plugin from the CLI.
|
|
1184
|
-
|
|
1185
|
-
ALIASES
|
|
1186
|
-
$ dx plugins unlink
|
|
1187
|
-
$ dx plugins remove
|
|
1188
|
-
```
|
|
1189
|
-
|
|
1190
|
-
## `dx plugins update`
|
|
1191
|
-
|
|
1192
|
-
Update installed plugins.
|
|
1193
|
-
|
|
1194
|
-
```
|
|
1195
|
-
USAGE
|
|
1196
|
-
$ dx plugins update [-h] [-v]
|
|
1197
|
-
|
|
1198
|
-
FLAGS
|
|
1199
|
-
-h, --help Show CLI help.
|
|
1200
|
-
-v, --verbose
|
|
1201
|
-
|
|
1202
|
-
DESCRIPTION
|
|
1203
|
-
Update installed plugins.
|
|
1204
|
-
```
|
|
1205
|
-
|
|
1206
961
|
## `dx reset`
|
|
1207
962
|
|
|
1208
963
|
Reset user data.
|
|
@@ -1542,7 +1297,7 @@ FLAGS
|
|
|
1542
1297
|
--config=path [default: /home/runner/.config/dx/profile/default.yml] Config file.
|
|
1543
1298
|
--dry-run Dry run.
|
|
1544
1299
|
--json Output as JSON.
|
|
1545
|
-
--name=<value> [default:
|
|
1300
|
+
--name=<value> [default: charlie-thirteen-london-aspen] Tunnel name
|
|
1546
1301
|
--no-agent Run command without agent.
|
|
1547
1302
|
--no-wait Do not wait for space to be ready.
|
|
1548
1303
|
--profile=<value> [default: default] User profile.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../../src/commands/app/create.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../../src/commands/app/create.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,aAAa,UAA6B,CAAC;AAYxD,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,WAAW,CAAC,OAAO,MAAM,CAAC;IAC5D,OAAgB,WAAW,SAA0B;IAErD,OAAgB,IAAI;;MAElB;IAEF,OAAgB,KAAK;;;;;;;;;;;;MAgBnB;IAEI,GAAG,IAAI,OAAO,CAAC,GAAG,CAAC;CA6C1B"}
|
|
@@ -36,7 +36,7 @@ const os_1 = __importDefault(require("os"));
|
|
|
36
36
|
const process_1 = require("process");
|
|
37
37
|
const process_2 = require("@dxos/process");
|
|
38
38
|
const base_command_1 = require("../../base-command");
|
|
39
|
-
exports.APP_TEMPLATES = ['hello', 'bare'];
|
|
39
|
+
exports.APP_TEMPLATES = ['hello', 'bare', 'tasks'];
|
|
40
40
|
// TODO(zhenyasav): factor this out into @dxos/fs or something (along with 'exists' from plate?)
|
|
41
41
|
const isDirEmpty = async (dirpath) => {
|
|
42
42
|
const dirIter = await fs_1.promises.opendir(dirpath);
|
|
@@ -50,6 +50,7 @@ class Create extends base_command_1.BaseCommand {
|
|
|
50
50
|
async run() {
|
|
51
51
|
const { default: bare, isDxosMonorepoSync } = await Promise.resolve().then(() => __importStar(require('@dxos/bare-template')));
|
|
52
52
|
const { default: hello } = await Promise.resolve().then(() => __importStar(require('@dxos/hello-template')));
|
|
53
|
+
const { default: tasks } = await Promise.resolve().then(() => __importStar(require('@dxos/tasks-template')));
|
|
53
54
|
const { fileExists } = await Promise.resolve().then(() => __importStar(require('@dxos/plate')));
|
|
54
55
|
const { name } = this.args;
|
|
55
56
|
const { template, interactive, verbose } = this.flags;
|
|
@@ -72,6 +73,7 @@ class Create extends base_command_1.BaseCommand {
|
|
|
72
73
|
const templates = {
|
|
73
74
|
bare,
|
|
74
75
|
hello,
|
|
76
|
+
tasks,
|
|
75
77
|
};
|
|
76
78
|
const monorepo = isDxosMonorepoSync();
|
|
77
79
|
const result = await templates[template].apply({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../../src/commands/app/create.ts"],"names":[],"mappings":";AAAA,EAAE;AACF,0BAA0B;AAC1B,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,sCAA0C;AAC1C,2BAAoC;AACpC,4CAAoB;AACpB,qCAA8B;AAE9B,2CAAqC;AAErC,qDAAiD;AAEpC,QAAA,aAAa,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../../src/commands/app/create.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"DX_ENVIRONMENT": "staging",
|
|
3
|
-
"DX_RELEASE": "@dxos/cli@0.2.1-main.
|
|
3
|
+
"DX_RELEASE": "@dxos/cli@0.2.1-main.617b24c",
|
|
4
4
|
"SENTRY_DESTINATION": "https://2647916221e643869965e78469479aa4@o4504012000067584.ingest.sentry.io/4504012027265029",
|
|
5
5
|
"TELEMETRY_API_KEY": "B00QG6PtJJrJ0VVFe0H5a6bcUUShKyZM",
|
|
6
6
|
"IPDATA_API_KEY": "ccc5f0cd66dd34a7c31c2ddc61c2bbca2db73892a993982bb3a5f0e2"
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.2.1-main.
|
|
2
|
+
"version": "0.2.1-main.617b24c",
|
|
3
3
|
"commands": {
|
|
4
4
|
"agent:list": {
|
|
5
5
|
"id": "agent:list",
|
|
@@ -515,7 +515,8 @@
|
|
|
515
515
|
"multiple": false,
|
|
516
516
|
"options": [
|
|
517
517
|
"hello",
|
|
518
|
-
"bare"
|
|
518
|
+
"bare",
|
|
519
|
+
"tasks"
|
|
519
520
|
],
|
|
520
521
|
"default": "hello"
|
|
521
522
|
},
|
|
@@ -3489,7 +3490,7 @@
|
|
|
3489
3490
|
"type": "option",
|
|
3490
3491
|
"description": "Tunnel name",
|
|
3491
3492
|
"multiple": false,
|
|
3492
|
-
"default": "
|
|
3493
|
+
"default": "charlie-thirteen-london-aspen"
|
|
3493
3494
|
}
|
|
3494
3495
|
},
|
|
3495
3496
|
"args": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/cli",
|
|
3
|
-
"version": "0.2.1-main.
|
|
3
|
+
"version": "0.2.1-main.617b24c",
|
|
4
4
|
"description": "DXOS CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dxos",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@oclif/core": "^2.9.4",
|
|
27
27
|
"@oclif/plugin-help": "^5.2.14",
|
|
28
|
-
"@oclif/plugin-plugins": "^3.1.8",
|
|
29
28
|
"@octokit/core": "^4.0.4",
|
|
30
29
|
"chalk": "^4.1.0",
|
|
31
30
|
"cli-progress": "^3.11.2",
|
|
@@ -47,25 +46,26 @@
|
|
|
47
46
|
"react": "^18.2.0",
|
|
48
47
|
"uuid": "^8.3.2",
|
|
49
48
|
"ws": "^7.4.4",
|
|
50
|
-
"@dxos/agent": "0.2.1-main.
|
|
51
|
-
"@dxos/async": "0.2.1-main.
|
|
52
|
-
"@dxos/bare-template": "0.2.1-main.
|
|
53
|
-
"@dxos/client": "0.2.1-main.
|
|
54
|
-
"@dxos/client-protocol": "0.2.1-main.
|
|
55
|
-
"@dxos/config": "0.2.1-main.
|
|
56
|
-
"@dxos/context": "0.2.1-main.
|
|
57
|
-
"@dxos/debug": "0.2.1-main.
|
|
58
|
-
"@dxos/functions": "0.2.1-main.
|
|
59
|
-
"@dxos/hello-template": "0.2.1-main.
|
|
60
|
-
"@dxos/invariant": "0.2.1-main.
|
|
61
|
-
"@dxos/log": "0.2.1-main.
|
|
62
|
-
"@dxos/plate": "0.2.1-main.
|
|
63
|
-
"@dxos/process": "0.2.1-main.
|
|
64
|
-
"@dxos/protocols": "0.2.1-main.
|
|
65
|
-
"@dxos/rpc": "0.2.1-main.
|
|
66
|
-
"@dxos/sentry": "0.2.1-main.
|
|
67
|
-
"@dxos/
|
|
68
|
-
"@dxos/
|
|
49
|
+
"@dxos/agent": "0.2.1-main.617b24c",
|
|
50
|
+
"@dxos/async": "0.2.1-main.617b24c",
|
|
51
|
+
"@dxos/bare-template": "0.2.1-main.617b24c",
|
|
52
|
+
"@dxos/client": "0.2.1-main.617b24c",
|
|
53
|
+
"@dxos/client-protocol": "0.2.1-main.617b24c",
|
|
54
|
+
"@dxos/config": "0.2.1-main.617b24c",
|
|
55
|
+
"@dxos/context": "0.2.1-main.617b24c",
|
|
56
|
+
"@dxos/debug": "0.2.1-main.617b24c",
|
|
57
|
+
"@dxos/functions": "0.2.1-main.617b24c",
|
|
58
|
+
"@dxos/hello-template": "0.2.1-main.617b24c",
|
|
59
|
+
"@dxos/invariant": "0.2.1-main.617b24c",
|
|
60
|
+
"@dxos/log": "0.2.1-main.617b24c",
|
|
61
|
+
"@dxos/plate": "0.2.1-main.617b24c",
|
|
62
|
+
"@dxos/process": "0.2.1-main.617b24c",
|
|
63
|
+
"@dxos/protocols": "0.2.1-main.617b24c",
|
|
64
|
+
"@dxos/rpc": "0.2.1-main.617b24c",
|
|
65
|
+
"@dxos/sentry": "0.2.1-main.617b24c",
|
|
66
|
+
"@dxos/tasks-template": "0.2.1-main.617b24c",
|
|
67
|
+
"@dxos/telemetry": "0.2.1-main.617b24c",
|
|
68
|
+
"@dxos/util": "0.2.1-main.617b24c"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@oclif/test": "^2.3.31",
|
|
@@ -92,8 +92,7 @@
|
|
|
92
92
|
"command_not_found": "./dist/src/hooks/command-not-found"
|
|
93
93
|
},
|
|
94
94
|
"plugins": [
|
|
95
|
-
"@oclif/plugin-help"
|
|
96
|
-
"@oclif/plugin-plugins"
|
|
95
|
+
"@oclif/plugin-help"
|
|
97
96
|
],
|
|
98
97
|
"helpClass": "./dist/src/help",
|
|
99
98
|
"topicSeparator": " ",
|