Skip to content

Commit

Permalink
fix: reorder args
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Feb 16, 2024
1 parent 7ddf86d commit 38f30d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/esbuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ type Result = {

export default class ESBuild extends Command {
static args = {
optionalArg: Args.string(),
// eslint-disable-next-line perfectionist/sort-objects
defaultArg: Args.string({
default: 'simple string default',
}),
defaultFnArg: Args.string({
default: async () => 'async fn default',
}),
optionalArg: Args.string(),
}

static enableJsonFlag = true
Expand Down

0 comments on commit 38f30d2

Please sign in to comment.