@travetto/repo 3.4.2 → 3.4.3

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
@@ -90,6 +90,8 @@ Usage: repo:list [options]
90
90
  Options:
91
91
  -c, --changed Only show changed modules (default: false)
92
92
  -f, --format <graph|json|list> Output format (default: "list")
93
+ -fh, --from-hash <string> Start revision to check against
94
+ -th, --to-hash <string> End revision to check against
93
95
  -h, --help display help for command
94
96
  ```
95
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/repo",
3
- "version": "3.4.2",
3
+ "version": "3.4.3",
4
4
  "description": "Monorepo utilities",
5
5
  "keywords": [
6
6
  "travetto",
@@ -22,8 +22,8 @@
22
22
  "directory": "module/repo"
23
23
  },
24
24
  "dependencies": {
25
- "@travetto/cli": "^3.4.2",
26
- "@travetto/worker": "^3.4.0"
25
+ "@travetto/cli": "^3.4.3",
26
+ "@travetto/worker": "^3.4.1"
27
27
  },
28
28
  "peerDependenciesMeta": {
29
29
  "@travetto/cli": {
@@ -15,10 +15,16 @@ export class ListModuleCommand implements CliCommandShape {
15
15
  /** Output format */
16
16
  format: 'graph' | 'json' | 'list' = 'list';
17
17
 
18
- /** Start revision to check against */
18
+ /**
19
+ * Start revision to check against
20
+ * @alias fh
21
+ */
19
22
  fromHash?: string;
20
23
 
21
- /** End revision to check against */
24
+ /**
25
+ * End revision to check against
26
+ * @alias th
27
+ */
22
28
  toHash?: string;
23
29
 
24
30
  async main(): Promise<void> {