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
If I remove the "exports": { ... }" section from "node_modules/conventional-changelog-techor/package.json", it will work.
So this is a problem with import-from-esm itself, regardless of whether it is a monorepo or not.
When I change import-from-esm back to import-from everything still works. This means that the changes in v11.1 did not include tests for the new functionality (#537), and these tests would have failed before v11.1. Changes add a lot of uncertainty.
The text was updated successfully, but these errors were encountered:
Maybe the issue was caused by an incorrect export map, or more probably by the fact your package was dual-mode (CJS + ESM), which is not explicitly supported by import-from-esm as we haven't encountered any need for it yet.
I see you've removed both the export map and the dual-mode configuration from your package, and I'm guessing this solved your issue. If you're still encountering an issue, please feel free to reopen with more details about what the issue could be.
As in Case 2 in semantic-release/commit-analyzer#589,
import-from-esm
does not seem to resolveexports
in package.json correctly.The text was updated successfully, but these errors were encountered: