Fred K. Schott

Results 142 comments of Fred K. Schott

Okay, that makes sense about lit-element compatibility. If this issue gets enough 👍's we can re-consider, otherwise I'd recommend the community template approach.

Thanks @stramel ! Hopefully it's just that we're overwriting it naively. If a template provides their own, we should honor that

Does either of these fix it for you? - `npm run build -- --no-bundle` Skips the bundler, if the bug is in the bundler - `npm run build -- --no-treeshake`...

Yes that's correct! This is a current issue in our tree-shake algo, hoping to fix it soon!

You can also add this line to your snowpack.config: ``` { "install": ["vue"] } ``` This tells Snowpack to install the full package, and will whitelist it for tree-shaking. With...

Re: HMR - it would make sense that HMR stops working, but you should still get livereload AKA an automatic full page reload whenever you make a change. That sounds...

It appears to be a limitation of our Vue plugin. I'm not familiar enough with the Vue compiler to add but I'd love to review if anyone can submit a...

No worries, moving to the proper repo

Yup, this is expected behavior for now (there's no way right now to tell what was and wasn't bundled after the bundler ran, so we default to include everything). We...

That's an interesting problem! I've got a partial fix so that style changes are updated as expected, but there's still a problem in the compiler around where css isn't removed...