Closed mischnic closed 3 years ago
Describe the bug
The minified output contains var 0={isMounted: (but a number cannot be a variable name).
var 0={isMounted:
Input code
const swc = require("@swc/core"); const fs = require("fs"); const code = fs.readFileSync( "node_modules/react/cjs/react.development.js", // react@17.0.2 "utf8" ); const minified = swc.minifySync(code, { sourceMap: false, mangle: true, compress: true }); fs.writeFileSync("dist/react.swc.js", minified.code);
Version The version of @swc/core: 1.2.69
This closed issue has been automatically locked because it had no new activity for a month. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you.
Describe the bug
The minified output contains
var 0={isMounted:
(but a number cannot be a variable name).Input code
Version The version of @swc/core: 1.2.69