Skip to content

Commit

Permalink
default
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jan 28, 2024
1 parent 6fe70f4 commit cb15ec9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/swc/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ export const initProgram = () => {

program.option(
"--out-file-extension [string]",
"Use a specific extension for the output files [default: js]"
"Use a specific extension for the output files [default: js]",
"js"
);

program.option(
Expand All @@ -93,7 +94,8 @@ export const initProgram = () => {

program.option(
"--strip-leading-paths",
"Remove the leading directory (including all parent relative paths) when building the final output path"
"Remove the leading directory (including all parent relative paths) when building the final output path",
false
);

program.option(
Expand Down

0 comments on commit cb15ec9

Please sign in to comment.