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
Right now with version 4.2.0, importing multi-progress-bars into a project using ES modules fails like this:
file:///....../node_modules/multi-progress-bars/dist/multi-progress-bars.mjs:1
import { green } from 'chalk';
^^^^^
SyntaxError: Named export 'green' not found. The requested module 'chalk' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
import pkg from 'chalk';
const { green } = pkg;
It's caused by how the TypeScript transpiler optimize import statements if it compiles to an ES module, and how NodeJS treats CJS imports in said ES modules. The error message suggests a potential solution to the problem, but I'm not sure if the TypeScript transpiler could be configured to achieve these statements.
Related (yet not similar) issues are discussed here and here.
As a side note, the issue doesn't appear if dist/multi-progress-bars.cjs is imported instead. However, this workaround can't be used with the current multi-progress-bars release, as it defines an exports section in its package.json which masks direct access to the files in the dist/ folder. The workaround would require the exports to be modified.
The text was updated successfully, but these errors were encountered:
Since I really don't know how all this importing stuff works (or I don't grok it at a low level), I can only go by following writeups I find online on how to dual publish commonjs and ESM. However, it appears I forgot a root ".": for my exports section... which maybe that will fix it? I also did the import pkg from 'chalk'; const { green } = pkg; bit suggested by node. You can test it out with prerelease version 4.2.2-0. Let me know if it happens to work.
Right now with version
4.2.0
, importingmulti-progress-bars
into a project using ES modules fails like this:It's caused by how the TypeScript transpiler optimize import statements if it compiles to an ES module, and how NodeJS treats CJS imports in said ES modules. The error message suggests a potential solution to the problem, but I'm not sure if the TypeScript transpiler could be configured to achieve these statements.
Related (yet not similar) issues are discussed here and here.
As a side note, the issue doesn't appear if
dist/multi-progress-bars.cjs
is imported instead. However, this workaround can't be used with the currentmulti-progress-bars
release, as it defines anexports
section in itspackage.json
which masks direct access to the files in thedist/
folder. The workaround would require theexports
to be modified.The text was updated successfully, but these errors were encountered: