Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
Signed-off-by: TRACTION <19631364+iamtraction@users.noreply.github.com>
  • Loading branch information
iamtraction committed May 13, 2023
1 parent 137f308 commit a47fbb3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,12 @@ const main = () => {
const [ , , command ] = process.argv;

switch (command.toLowerCase()) {
case Commands.Filters: return filters();
case Commands.v10: return v10();
default:
throw new Error("You need to specify a migration command.", {
cause: "None of the valid commands were used: " + Object.values(Commands).join(" / "),
});
case Commands.Filters: return filters();
case Commands.v10: return v10();
default:
throw new Error("You need to specify a migration command.", {
cause: "None of the valid commands were used: " + Object.values(Commands).join(" / "),
});
}
};

Expand Down

0 comments on commit a47fbb3

Please sign in to comment.