Upgrade bun

This commit is contained in:
redphx
2024-08-09 06:41:14 +07:00
parent 4562ef8f19
commit 683709f980
3 changed files with 2 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ const postProcess = (str: string): string => {
// Remove enum's inlining comments
str = str.replaceAll(/ \/\* [A-Z0-9_]+ \*\//g, '');
str = str.replaceAll('/* @__PURE__ */ ', '');
// Remove comments from import
str = str.replaceAll(/\/\/ src.*\n/g, '');