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
I'm not sure if this is an issue with parcel-transformer-svelte3-plus or with Parcel (more specifically, @parcel/resolver-default). But I'll post this issue here as a start :-).
I am unable to import modules that are exported using object style export in its package.json from my Svelte 4 applications (bundled using Parcel and parcel-transformer-svelte3-plus), such as:
This is because the Parcel resolver doesn't know to use the svelte export condition, and there's no way for you or a transformer plugin to tell it to do that. I reported it as parcel-bundler/parcel#10050.
I'm not sure if this is an issue with parcel-transformer-svelte3-plus or with Parcel (more specifically, @parcel/resolver-default). But I'll post this issue here as a start :-).
I am unable to
import
modules that are exported using object styleexport
in itspackage.json
from my Svelte 4 applications (bundled using Parcel and parcel-transformer-svelte3-plus), such as:This fails event though I have enabled the new package exports with the following snippet in my
package.json
:More details and a reproduction of the error is available in the repo david-nordvall/parcel-resolver-exports-bug.
The text was updated successfully, but these errors were encountered: