You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug bundle-source creates an invalid bundle when transforming the below text
// below is the bad voodoo// */// above is the bad voodoo
the javascript is transformed into the following invalid code with error SyntaxError: Unexpected token '*'
"(function getExport(require, exports) { 'use strict'; const module = { exports };
'use strict';/* below is the bad voodoo*//* */*/ /* above is the bad voodoo*/returnmodule.exports;})//# sourceURL=/bundled-source/bug.js
Describe the bug
bundle-source
creates an invalid bundle when transforming the below textthe javascript is transformed into the following invalid code with error
SyntaxError: Unexpected token '*'
this can be found in the
zlib
package ofrollup-plugin-node-builtins, specifically here
The text was updated successfully, but these errors were encountered: