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
Maybe I'm missing something, but, to my understanding, the CommonJS version can't work because it forces a require() of an ES Module:
vareffector_mjs=require('effector/effector.mjs');
Which of course leads to this error:
Error: require() of ES Module [EDITED]/node_modules/effector/effector.mjs not supported.
Instead change the require of [EDITED]/node_modules/effector/effector.mjs to a dynamic import() which is available in all CommonJS modules.
The text was updated successfully, but these errors were encountered:
Maybe I'm missing something, but, to my understanding, the CommonJS version can't work because it forces a
require()
of an ES Module:Which of course leads to this error:
The text was updated successfully, but these errors were encountered: