taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit b97d40494ebfb80a6bb459277fc00403ee6866a3
parent b8e40ddd669feb5d803315ecb352cdf99ed429b6
Author: Florian Dold <dold@taler.net>
Date:   Thu,  6 Aug 2026 17:08:32 +0200

wallet-cli: hide debugging options from the default help

Diffstat:
Mpackages/taler-wallet-cli/src/index.ts | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts @@ -423,6 +423,7 @@ export const walletCli = clk }) .maybeOption("features", ["--features"], clk.STRING, { help: "Comma-separated list of feature flags to enable.", + mark: "hidden", }) .maybeOption("walletConnection", ["--wallet-connection"], clk.STRING, { help: "Connect to an RPC wallet", @@ -437,6 +438,7 @@ export const walletCli = clk }) .maybeOption("cryptoWorker", ["--crypto-worker"], clk.STRING, { help: "Override crypto worker implementation type.", + mark: "hidden", }) .maybeOption("log", ["-L", "--log"], clk.STRING, { help: "configure log level (NONE, ..., TRACE)", @@ -463,6 +465,7 @@ export const walletCli = clk }) .flag("noThrottle", ["--no-throttle"], { help: "Don't do any request throttling.", + mark: "hidden", }) .flag("noHttp", ["--no-http"], { help: "Require TLS; disallow unsafe http connections.", @@ -475,6 +478,7 @@ export const walletCli = clk }) .flag("skipDefaults", ["--skip-defaults"], { help: "Skip configuring default exchanges.", + mark: "hidden", }); type WalletCliArgsType = clk.GetArgType<typeof walletCli>;