()
| 44 | } |
| 45 | |
| 46 | function usage(): string { |
| 47 | return [ |
| 48 | 'Usage:', |
| 49 | ' /break-cache', |
| 50 | ' /break-cache status', |
| 51 | ' /break-cache bump [reason]', |
| 52 | ' /break-cache set <value>', |
| 53 | ' /break-cache clear', |
| 54 | ' /break-cache reset-state', |
| 55 | ].join('\n') |
| 56 | } |
| 57 | |
| 58 | function buildBumpValue(reason: string | null): string { |
| 59 | const sanitized = sanitizeValue(reason ?? '') |