From f5e751047bc550b8ffc805f18ee676757a4fb646 Mon Sep 17 00:00:00 2001 From: _Kerman Date: Wed, 23 Oct 2024 16:55:55 +0800 Subject: [PATCH] chore: disable oxc minifier --- test/test262/preprocessor.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test262/preprocessor.cjs b/test/test262/preprocessor.cjs index a55c7a11..137de320 100644 --- a/test/test262/preprocessor.cjs +++ b/test/test262/preprocessor.cjs @@ -7,7 +7,7 @@ const process = require('process'); const path = require('path'); const { readFileSync } = require('fs'); -const do_minify = true; +const do_minify = false; function treeShakeEval(input, tree_shake) { return input.replace(/eval\('(.*)'\)/, (_, content) => {treeShake(content, tree_shake, do_minify, true).output});