@travetto/cli 8.0.0-alpha.24 → 8.0.0-alpha.26
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 +12 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -30,6 +30,7 @@ Commands:
|
|
|
30
30
|
email:test Render and send a template file to a target recipient for quick validation.
|
|
31
31
|
eslint Run ESLint for the workspace or changed files.
|
|
32
32
|
eslint:register Generate the workspace ESLint configuration entry file.
|
|
33
|
+
firestore:indexes Generate the Firestore composite indexes JSON for all registered models.
|
|
33
34
|
llm:support:execute Execute llm-support operations with dry-run by default.
|
|
34
35
|
llm:support:mcp Minimal MCP stdio server for llm-support tools.
|
|
35
36
|
llm:support:plan Build plan-first execution details for llm-support operations.
|
|
@@ -287,7 +288,8 @@ $ trv custom:arg --help
|
|
|
287
288
|
|
|
288
289
|
Usage: custom:arg [options] [volume:number]
|
|
289
290
|
|
|
290
|
-
|
|
291
|
+
Description:
|
|
292
|
+
Example command with a custom argument
|
|
291
293
|
|
|
292
294
|
Options:
|
|
293
295
|
-m, --message <string> The message to send back to the user (default: "hello")
|
|
@@ -340,7 +342,8 @@ $ trv custom:env-arg --help
|
|
|
340
342
|
|
|
341
343
|
Usage: custom:env-arg [options] [volume:number]
|
|
342
344
|
|
|
343
|
-
|
|
345
|
+
Description:
|
|
346
|
+
Example of a command with a custom environment variable argument
|
|
344
347
|
|
|
345
348
|
Options:
|
|
346
349
|
-t, --text <string> The message to send back to the user (default: "hello")
|
|
@@ -455,7 +458,9 @@ import type { WebHttpServer } from '../src/types.ts';
|
|
|
455
458
|
* Initializes registry and server bindings, supports restart-aware development
|
|
456
459
|
* flags, and can attempt to clear conflicting port owners in local workflows.
|
|
457
460
|
*
|
|
458
|
-
* @example
|
|
461
|
+
* @example
|
|
462
|
+
* Starting a web server on port 8000
|
|
463
|
+
* > trv web:http -m <MODULE> -p 8000
|
|
459
464
|
*/
|
|
460
465
|
@CliCommand()
|
|
461
466
|
export class WebHttpCommand implements CliCommandShape {
|
|
@@ -570,10 +575,11 @@ $ trv service --help
|
|
|
570
575
|
|
|
571
576
|
Usage: service [options] <action:restart|start|status|stop> [services...:string]
|
|
572
577
|
|
|
573
|
-
|
|
578
|
+
Description:
|
|
579
|
+
Manage development services (start/stop/restart/status) across the workspace.
|
|
574
580
|
|
|
575
|
-
Services are discovered from registered descriptors and executed with streamed
|
|
576
|
-
terminal feedback, including optional quiet mode.
|
|
581
|
+
Services are discovered from registered descriptors and executed with streamed
|
|
582
|
+
terminal feedback, including optional quiet mode.
|
|
577
583
|
|
|
578
584
|
Options:
|
|
579
585
|
-q, --quiet (default: false)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/cli",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI infrastructure for Travetto framework",
|
|
6
6
|
"keywords": [
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"directory": "module/cli"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@travetto/schema": "^8.0.0-alpha.
|
|
33
|
-
"@travetto/terminal": "^8.0.0-alpha.
|
|
32
|
+
"@travetto/schema": "^8.0.0-alpha.20",
|
|
33
|
+
"@travetto/terminal": "^8.0.0-alpha.19"
|
|
34
34
|
},
|
|
35
35
|
"travetto": {
|
|
36
36
|
"displayName": "Command Line Interface",
|