diff --git a/src/format_utils.js b/src/format_utils.js index e3af67db37..ed162c821a 100644 --- a/src/format_utils.js +++ b/src/format_utils.js @@ -112,6 +112,10 @@ function tabLabel(groupId, value) { return 'Claude Code'; if (value === 'opencode') return 'OpenCode'; + if (value === 'cjs') + return 'CommonJS'; + if (value === 'esm') + return 'ES Modules'; throw new Error(`Unknown label type: ${value}`) }