@travetto/repo 3.4.0 → 3.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/repo",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "Monorepo utilities",
5
5
  "keywords": [
6
6
  "travetto",
@@ -22,7 +22,7 @@
22
22
  "directory": "module/repo"
23
23
  },
24
24
  "dependencies": {
25
- "@travetto/cli": "^3.4.0",
25
+ "@travetto/cli": "^3.4.1",
26
26
  "@travetto/worker": "^3.4.0"
27
27
  },
28
28
  "peerDependenciesMeta": {
@@ -15,9 +15,12 @@ export class ListModuleCommand implements CliCommandShape {
15
15
  /** Output format */
16
16
  format: 'graph' | 'json' | 'list' = 'list';
17
17
 
18
+ /** Base revision to check against */
19
+ since?: string;
20
+
18
21
  async main(): Promise<void> {
19
22
 
20
- const mods = await CliModuleUtil.findModules(this.changed ? 'changed' : 'all');
23
+ const mods = await CliModuleUtil.findModules(this.changed ? 'changed' : 'all', this.since);
21
24
  switch (this.format) {
22
25
  case 'list': {
23
26
  for (const mod of mods.map(x => x.sourceFolder).sort()) {