()
| 137 | * Increment the command counter and persist. |
| 138 | */ |
| 139 | export function incrementCommandCount(): number { |
| 140 | const config = readConfig(); |
| 141 | config.commandCount++; |
| 142 | writeConfig(config); |
| 143 | return config.commandCount; |
| 144 | } |
| 145 | |
| 146 | /** Expose the config directory path for the telemetry command output */ |
| 147 | export const CONFIG_PATH = CONFIG_FILE; |
nothing calls this directly
no test coverage detected