You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CLJS-2652: Line breaks in long options for compile
This patch prevents line-breaking in the middle of long-form option
descriptions by treating long-form options as single tokens, instead
of considering `--` as its own token.
Running `cljs --help` without this patch would produce output looking
like (notice the line-break between `--` and `compile`:
* Set optimization level, only effective with --
compile main option. Valid values are: none,
whitespace, simple, advanced
With this patch, the output looks like:
* Set optimization level, only effective with
--compile main option. Valid values are: none,
whitespace, simple, advanced
0 commit comments