Remove ESBuild experiment. Add --install option for bash completions. Move shell scripts to separate files for auditability. Fix template inspect command autocomplete and output formatting

This commit is contained in:
2026-04-20 11:12:26 +00:00
parent ff2fe126c6
commit 32c42cdc2d
11 changed files with 706 additions and 1049 deletions

View File

@@ -112,10 +112,9 @@ async function main(): Promise<void> {
workingDir: process.cwd(),
};
// Early handling if we are calling the mnemonic command
// TODO: This is ugly. I would like to find a nicer way of doing this.
// Early handling for completions command
if (command === "completions") {
handleCompletionsCommand(subArgs);
handleCompletionsCommand(subArgs, options);
process.exit(0);
}