From 9bdb95c9e34cef640534e5e5a1e2225a80442000 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:48:15 +0800 Subject: [PATCH] TODO#139894 [ footer -最下方說明與保經代合作 ] 文案修改 --- PAMapp/node_modules/terser-webpack-plugin/node_modules/terser/lib/cli.js | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/PAMapp/node_modules/terser-webpack-plugin/node_modules/terser/lib/cli.js b/PAMapp/node_modules/terser-webpack-plugin/node_modules/terser/lib/cli.js index 1399753..1929813 100644 --- a/PAMapp/node_modules/terser-webpack-plugin/node_modules/terser/lib/cli.js +++ b/PAMapp/node_modules/terser-webpack-plugin/node_modules/terser/lib/cli.js @@ -224,7 +224,7 @@ let result; try { - result = await minify(files, options); + result = await minify(files, options, fs); } catch (ex) { if (ex.name == "SyntaxError") { print_error("Parse error at " + ex.filename + ":" + ex.line + "," + ex.col); @@ -287,14 +287,18 @@ }, 2)); } else if (program.output == "spidermonkey") { try { - const minified = await minify(result.code, { - compress: false, - mangle: false, - format: { - ast: true, - code: false - } - }); + const minified = await minify( + result.code, + { + compress: false, + mangle: false, + format: { + ast: true, + code: false + } + }, + fs + ); console.log(JSON.stringify(minified.ast.to_mozilla_ast(), null, 2)); } catch (ex) { fatal(ex); -- Gitblit v1.8.0