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
.mjs
Publint reports for all files in /es/ directory:
/es/
/es/${filename}.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /es/${filename}.mjs
We should change it to comply with the standard.
Warning: this change might be considered breaking because it will break the code that uses filenames with extensions in the import statements.
HOT team did a similar task in handsontable/handsontable#7403 & https://github.com/handsontable/handsontable/pull/8875/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
The text was updated successfully, but these errors were encountered:
Having the same issue, my library has /cjs, /umd, and /esm and here is my package json, and getting the same error
"main": "dist/umd/index.js", "module": "src/index.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./package.json": "./package.json" },
Sorry, something went wrong.
Thank you for the feedback @sedghi
I will notify you as soon as we fix this issue.
@sedghi Ok, we'll increase the priority of this task. Is it a blocker for you? Were you able to make HyperFormula work by adjusting the configuration?
Will be done in scope of #1344
sequba
No branches or pull requests
Description
Publint reports for all files in
/es/
directory:We should change it to comply with the standard.
Warning: this change might be considered breaking because it will break the code that uses filenames with extensions in the import statements.
HOT team did a similar task in handsontable/handsontable#7403 & https://github.com/handsontable/handsontable/pull/8875/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
Links
The text was updated successfully, but these errors were encountered: