Skip to content

Commit

Permalink
rename option out to output
Browse files Browse the repository at this point in the history
  • Loading branch information
tasshi-me committed Oct 24, 2024
1 parent c1c05db commit a8e6a7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/plugin/pack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const builder = (args: yargs.Argv) =>
demandOption: true,
requiresArg: true,
})
.option("out", {
.option("output", {
describe:
"The destination path of generated plugin file\nDefault to plugin.zip on current directory",
type: "string",
Expand All @@ -41,7 +41,7 @@ const handler = async (args: Args) => {
emitExperimentalWarning("This feature is under early development");
const flags = {
ppk: args["private-key"],
out: args.out,
out: args.output,
watch: args.watch,
};
if (process.env.NODE_ENV === "test") {
Expand Down

0 comments on commit a8e6a7d

Please sign in to comment.