We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Globally rename export names so that $2af3.SomeLongExportName can be minified better
$2af3.SomeLongExportName
Looks like Webpack does this:
const SomeListener = () => { const [has, set] = Object(react__WEBPACK_CONCATENATED_MODULE__["useState"])(false); const b = Object((__webpack_require__("9tWZ"))["a" /* useFoo */])(); const a = Object((__webpack_require__("MZOi"))["c" /* useBar */])(); const interval = Object(react__WEBPACK_CONCATENATED_MODULE__["useRef"])(null); const c = Object((__webpack_require__("rZ/p"))["a" /* useThing */])(); return null; }
Prevent long member access names and string literals (for $parcel$exports) which can't be minified.
$parcel$export
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🙋 feature request
Globally rename export names so that
$2af3.SomeLongExportName
can be minified betterLooks like Webpack does this:
🔦 Context
Prevent long member access names and string literals (for
$parcel$export
s) which can't be minified.The text was updated successfully, but these errors were encountered: