help
Prints help information for the tool. Append a script name to get help for that script.
Usage
npx @lukasbach/scripts help
You can call the script directly if you have installed it globally:
npm i -g @lukasbach/scripts
ldo help
Options
-v
,--verbose
: Verbose logging
You can also omit options, and will be asked for them interactively.
Add --yes
to skip all confirmations.
Script source
/** Prints help information for the tool. Append a script name to get help for that script. */
if (args._.length === 0) {
await utils.runScript("internal/list-available-scripts", global.args);
} else {
await utils.runScript("internal/print-script-docs", global.args);
}