Skip to content

Commit

Permalink
Merge pull request #161 from nguyenyou/fix/commander-params-name
Browse files Browse the repository at this point in the history
fix commander params name
  • Loading branch information
nguyenyou authored Nov 25, 2024
2 parents ee1d86a + c3e11ec commit 39e40a5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/tough-hounds-arrive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"scalawind": patch
---

fix commander flag name
8 changes: 4 additions & 4 deletions packages/scalawind/src/commands/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,22 @@ export const generate = new Command()
false
)
.option(
"-gd, --gen-doc",
"-gd, --gen-doc <genDoc>",
"generate documentation for methods",
"true"
)
.option(
"-sa, --support-arbitrary",
"-sa, --support-arbitrary <supportArbitrary>",
"support arbitrary values",
"true"
)
.option(
"-soc, --support-opacity-color",
"-soc, --support-opacity-color <supportOpacityColor>",
"support opacity color",
"true"
)
.option(
"-snv, --support-negative-value",
"-snv, --support-negative-value <supportNegativeValue>",
"support opacity color",
"true"
)
Expand Down

0 comments on commit 39e40a5

Please sign in to comment.