James Garbutt

Results 209 comments of James Garbutt

it would be interesting to hear from the rest of you what usage of the HMR API is like as opposed to automatic solutions. presumably vite "just works" and nobody...

FYI in modernweb repo we now adopted the same signatures as vite: ```ts accept((module) => { ... }); acceptDeps([dep1, dep2], ([dep1, dep2]) => { ... }); ```

i think that works in the example because the files are still separate, i.e. they are CSS files being processed. i had no idea about the `emit` mode though, so...

@Anidetrix could you possibly find time to take a look at this? a fair amount of people are trying to use new postcss syntaxes with vite, which won't work since...

This leak is probably partially explained by your `setInterval`. It will never be cleared, even after the associated element has been disconnected from DOM. So the number of nodes in...

@pamapa this also effects esm-only environments (e.g. native browser modules). currently it isn't possible to use oidc-client-ts in a browser natively because crypto-js ships commonjs. the benefits of oidc-client shipping...

to what end? it isn't really a solution to move off npm to using CDNs for dependencies. and even if we did that somehow, the only CDNs that'd work are...

I did start doing this for the polymer elements, but Afaik typescript doesn't plan on (ever) introducing tsconfig transform configuration. so would we need to introduce a build script? i...

it should, the web component analyser knows to check the property config for `attribute` and use that as the attribute name. maybe it gets confused because its in a mixin?...

it seems likely, i wonder if the analyzer needs to explicitly understand mixins. if one of you could create an issue that would be super helpful with your example you...