Skip to content

Commit d53956e

Browse files
committed
Ah, camelcase-to-snake-case does not work for command aliases
1 parent f2cb5c4 commit d53956e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/cli.mts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,21 @@ void (async () => {
9090
hidden: true,
9191
argv: ['audit-log'],
9292
},
93+
auditLog: {
94+
description: cmdAuditLog.description,
95+
hidden: true,
96+
argv: ['audit-log'],
97+
},
9398
auditLogs: {
9499
description: cmdAuditLog.description,
95100
hidden: true,
96101
argv: ['audit-log'],
97102
},
103+
['audit-logs']: {
104+
description: cmdAuditLog.description,
105+
hidden: true,
106+
argv: ['audit-log'],
107+
},
98108
cdxgen: {
99109
description: cmdManifestCdxgen.description,
100110
hidden: true,

0 commit comments

Comments
 (0)