@travetto/cli 3.1.5 → 3.1.7

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
@@ -27,6 +27,7 @@ Commands:
27
27
  doc:mapping Generate module mapping for @travetto/doc
28
28
  email:compile CLI Entry point for running the email server
29
29
  email:editor The email editor compilation service and output serving
30
+ email:test CLI Entry point for running the email server
30
31
  lint Command line support for linting
31
32
  lint:register Writes the lint configuration file
32
33
  model:export Exports model schemas
@@ -42,6 +43,7 @@ Commands:
42
43
  repo:publish Publish all pending modules
43
44
  repo:version Version all changed dependencies
44
45
  repo:version-sync Enforces all packages to write out their versions and dependencies
46
+ rest:client Run client rest operation
45
47
  run:double Doubles a number
46
48
  run:rest Run a rest server as an application
47
49
  scaffold Command to run scaffolding
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/cli",
3
- "version": "3.1.5",
3
+ "version": "3.1.7",
4
4
  "description": "CLI infrastructure for Travetto framework",
5
5
  "keywords": [
6
6
  "cli",
@@ -24,7 +24,7 @@
24
24
  "directory": "module/cli"
25
25
  },
26
26
  "dependencies": {
27
- "@travetto/schema": "^3.1.5",
27
+ "@travetto/schema": "^3.1.6",
28
28
  "@travetto/terminal": "^3.1.0"
29
29
  },
30
30
  "travetto": {
package/src/registry.ts CHANGED
@@ -19,7 +19,7 @@ const COMMAND_PACKAGE = [
19
19
  [/^lint(:register)?$/, 'lint', true],
20
20
  [/^model:(install|export)$/, 'model', true],
21
21
  [/^openapi:(spec|client)$/, 'openapi', true],
22
- [/^email:(compile|editor)$/, 'email-template', false],
22
+ [/^email:(compile|editor)$/, 'email-compiler', false],
23
23
  [/^pack(:zip|:docker)?$/, 'pack', false],
24
24
  ] as const;
25
25