- Notifications
You must be signed in to change notification settings - Fork2k
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
docs: add information about "sideEffects"#10691
Conversation
|
This looks really good. The main thing I noted while looking at this is that most Svelte users use Vite and the Vite docs say nothing about |
Thanks! Sounds good, I'veopened an issue, we can see what they say. |
I do see mention of side effects inrollup's docs, but I can't find it in Vite's either. |
Co-authored-by: Willow (GHOST) <ghostdevbusiness@gmail.com>
Co-authored-by: Willow (GHOST) <ghostdevbusiness@gmail.com>
Co-authored-by: Willow (GHOST) <ghostdevbusiness@gmail.com>
see this issue in vitevitejs/vite#4389 (via#10633) A blanket recommendation for Before we change the documentation i'd like to see a repository demonstrating that and how it works. Other options to explore:
"exports": {"svelte": {"import": {"./Foo.svelte":"./src/components/Foo.svelte" } }} (I did experiment with globs in exports map a while ago but back then it was buggy for *.svelte) |
I agree they shouldn't, so think it would be nice to make that the recommendation. I think this PR both mentions the dangers of getting it wrong and shows how to explicitly list the files with side effects where it says "Make sure that
We could mention that would also address the issue in this section. I don't think we should go as far as recommending users always do it as it seems to be a case-by-case basis as to which might be the better design for a library |
did some investigation here:sveltejs/vite-plugin-svelte#760 there are several ways in vite/rollup to say some module does not have a side effect, but currently the only one working seems to be the package.json field that's mentioned here. So unless there is a change that allows us to declare the virtual css modules from vite-plugin-svelte as free, the suggestion to add If you are using barrel files inside your own application, you can also add this to the package.json in your app and it'll work. |
Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
Judging from the discussion in#10691 (comment) it seems that bundlers work in weird ways (and may work differently across bundlers?) depending on the value of |
Just throwing my hat into the ring here that this should at least be better advertised due to how focused Sveltekit is on performance. Right now I am maintaining a pretty mature Sveltekit app that imports a core Svelte library everywhere. Implementing this simple trick just gained me like 10 points on my lighthouse scores. |
I'm marking this as ready for further review now that the issue I filed with Vite has been fixed and out for several releases. I did a test on kit.svelte.dev: current with with |
thank you!! it was a long journey on this one, but I'm glad we got it figured out. I'll follow up with a PR to update the default in |
Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. Changesets that add features should beminor
and those that fix bugs should bepatch
. Please prefix changeset messages withfeat:
,fix:
, orchore:
.sideEffects
I recently discovered that the CSS from every component in mylibrary (you can test by importing from 3.0.6 vs 3.0.7) was being included in the build when only one component was being used. By adding
"sideEffects": false
topackage.json
it was resolved. I figured this would be good to add to the docs to minimize bundle sizes for component libraries.