Skip to content

Commit

Permalink
Remove extra parens
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Mangel committed Aug 18, 2023
1 parent dacd4bb commit 0548aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fable-compiler-js/src/app.fs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ let run opts projectFileName outDir =
sourceMaps = (opts |> hasFlag "--sourceMaps") || (opts |> hasFlag "-s")
typedArrays = opts |> tryFlag "--typedArrays"
language = opts |> argValue ["--language"; "--lang"]
|> Option.map (fun _ -> "TypeScript"))
|> Option.map (fun _ -> "TypeScript")
|> Option.defaultValue "JavaScript"
printAst = opts |> hasFlag "--printAst"
// watch = opts |> hasFlag "--watch"
Expand Down

0 comments on commit 0548aaa

Please sign in to comment.