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
We recently saw a problem where we wanted to be able to support options for both TUI and Programmatic CLI modes.
The problem is that if you e.g. .addOption(endopintOption()) at the root and subcommand levels with... then the defaults and parsing of these options collide (see tj/commander.js#2260)
As I see it, we're trending to one of several futures
the TUI only runs default config, OR << we are currently here
the TUI uses differently named options (e.g. --tui-endpoint), OR
the TUI is subcommand e.g. entropy tui, OR
the TUI is a different bin-script/ program e.g. entropy-interactive
The text was updated successfully, but these errors were encountered:
We recently saw a problem where we wanted to be able to support options for both TUI and Programmatic CLI modes.
The problem is that if you e.g.
.addOption(endopintOption())
at the root and subcommand levels with... then the defaults and parsing of these options collide (see tj/commander.js#2260)As I see it, we're trending to one of several futures
--tui-endpoint
), ORentropy tui
, ORentropy-interactive
The text was updated successfully, but these errors were encountered: