We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd46444 commit 6c4ac80Copy full SHA for 6c4ac80
1 file changed
packages/cli/src/registry.ts
@@ -243,6 +243,12 @@ ${b("Getting Help:")}
243
out.write(` ${a(opt.flag.padEnd(maxLen + 2))} ${d(opt.description)}\n`);
244
}
245
246
+ if (cmd.notes && cmd.notes.length > 0) {
247
+ out.write(`\n${b("Notes:")}\n`);
248
+ for (const note of cmd.notes) {
249
+ out.write(` ${note}\n`);
250
+ }
251
252
if (cmd.examples && cmd.examples.length > 0) {
253
out.write(`\n${b("Examples:")}\n`);
254
for (const ex of cmd.examples) {
0 commit comments