From 38f30d279b8be2387964e2916cc1b243855f40cf Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Fri, 16 Feb 2024 15:27:36 -0700 Subject: [PATCH] fix: reorder args --- src/commands/esbuild.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/esbuild.ts b/src/commands/esbuild.ts index 9c00312..88cf7b2 100644 --- a/src/commands/esbuild.ts +++ b/src/commands/esbuild.ts @@ -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