Rollup not detecting svelte-fast-dimension/action #7
-
I'm using rollup in my project but during the bundling of the project, the module const importText = 'import { resize as ___resize } from "svelte-fast-dimension/dist/action";'; applying the fix will cause any issue with other bundlers? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I tested this in a rollup project and it seems to be working fine. Using |
Beta Was this translation helpful? Give feedback.
I tested this in a rollup project and it seems to be working fine. Using
/dist/action
shouldn't be allowed since we've used export maps for/action
, and the strictness means/dist/action
cannot be accessed ever. Do you have a repro or error logs? Rollup should also be respecting export maps.