@travetto/cli 3.1.6 → 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
@@ -43,6 +43,7 @@ Commands:
43
43
  repo:publish Publish all pending modules
44
44
  repo:version Version all changed dependencies
45
45
  repo:version-sync Enforces all packages to write out their versions and dependencies
46
+ rest:client Run client rest operation
46
47
  run:double Doubles a number
47
48
  run:rest Run a rest server as an application
48
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.6",
3
+ "version": "3.1.7",
4
4
  "description": "CLI infrastructure for Travetto framework",
5
5
  "keywords": [
6
6
  "cli",
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