Skip to content

Commit 8eb7ec1

Browse files
committed
fix: Constant values were being lowercased in compiler symbols
1 parent aa3a7f4 commit 8eb7ec1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/pack/Compiler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ class CompilerTypeInfo {
7171

7272
for (const [key, value] of Object.entries(input)) {
7373
if (valueAsKey) {
74-
pack.map[value] = key.toLowerCase();
74+
pack.map[value] = key;
7575
} else {
76-
pack.map[key] = value.toLowerCase();
76+
pack.map[key] = value;
7777
}
7878
}
7979

0 commit comments

Comments
 (0)