-
-
Notifications
You must be signed in to change notification settings - Fork 92
Closed as not planned
Description
I have an ejected CRA with a custom webpack loader. I use swc-loader instead of babel-loader for faster compile time. Actually, I add @walletconnect/web3-provider into my app. I got an error to include { util: require.resolve('util/') } into resolve.fallback webpack configuration. After that error was fixed, I got the error again like this
ERROR in ./node_modules/util/util.js
Module build failed (from ./node_modules/swc-loader/src/index.js):
Error:
× the name `fn` is defined multiple times
╭─[/media/data/SIDE_PROJECTS/webpack-react-ts-inversify-web-worker/node_modules/util/util.js:617:5]
617 │ var fn = original[kCustomPromisifiedSymbol];
· ─┬
· ╰── previous definition of `fn` here
618 │ if (typeof fn !== 'function') {
619 │ throw new TypeError('The "util.promisify.custom" argument must be of type Function');
620 │ }
621 │ Object.defineProperty(fn, kCustomPromisifiedSymbol, {
622 │ value: fn, enumerable: false, writable: false, configurable: true
623 │ });
624 │ return fn;
625 │ }
626 │
627 │ function fn() {
· ─┬
· ╰── `fn` redefined here
╰────
could you please refactor the variable/function declaration name in order to solve my problem?
Line 617 in a292d8a
| var fn = original[kCustomPromisifiedSymbol]; |
Line 627 in a292d8a
| function fn() { |
Metadata
Metadata
Assignees
Labels
No labels