Hubert SABLONNIÈRE

Results 265 comments of Hubert SABLONNIÈRE

Both would be great ;-) 1. a string search for scope keys 2. a toggle for types (arrays, strings, boolean, int, functions) or maybe just functions and "other values"

I think some stuffs are really specific to my context so I'm not sure we should work on a shared lib but if it makes sense, I would be glad...

@claviska I just used your code and adapted it to my custom WC input ;-) Thanks a lot!!! :tada: I had to do add naïve support for "dot notation" and...

Yes, [`http-cache-semantics`](https://github.com/kornelski/http-cache-semantics) implemented `vary`, I looked at the code and it seems nice. The thing is, if `vary` is used, the headers specified with it must be part of the...

@natemoo-re Update: I've been digging at how nginx and apache do it. I'm still confused by some details on how nginx does it but I have enough to try an...

Interesting discovery: Chromium has a bug with the Cache API and cannot store multiple versions of the same URL. https://bugs.chromium.org/p/chromium/issues/detail?id=756796

Hey, I'm also interesed in such a dev server plugin :wink: We managed to make something but it clearly needs some love. * The plugin: * https://github.com/CleverCloud/clever-components/blob/master/web-dev-server.config.js#L102-L109 * The `generateCustomElementsManifest`...

> Do you mean analyze on a per-module basis? Sorry, I meant a JS module I could import and call to generate the CEM. I wasn't referring to the module...

> Im not really sure what you mean with this point. You can import the create function and generate a CEM I would need to import all my modules, load...

Right now we have custom WDS plugin which does this: ``` async serve (context) { if (context.path === '/dist/custom-elements.json') { return generateCustomElementsManifest(); } }, ``` The `custom-elements.json` output contains the...