From 1b2be97f3779ce186f5d82f821913fc60435a1c6 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 21 Nov 2025 10:59:54 -0800 Subject: [PATCH] chore: supprot cjs/esm tabs --- src/format_utils.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/format_utils.js b/src/format_utils.js index e3af67db37b..ed162c821aa 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}`) }