Skip to content

Commit

Permalink
fix(cli): allow schema generation
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed Mar 27, 2024
1 parent 614d087 commit 12814e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/actions/PruneAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export const pruneActionOptions = {
shortFlag: "g",
defaults: "packageName,repositoryName",
value: (v) =>
parseStringList(v, [
parseStringList<"packageName" | "repositoryName" | "repositoryType">(v, [
"packageName",
"repositoryName",
"repositoryType",
] as const),
]),
},
dryRun: {
description: "",
Expand Down

0 comments on commit 12814e9

Please sign in to comment.