Diego Esmerio
Diego Esmerio
@alfonsogarciacaro I may be wrong, but I believe that the service worker can capture fetch events from everywhere. I'll make some tests and check if just creating a cache to...
Having them split could even help maintenance because parsing the big file is a lot. I had plans to work on some PWA specific things and couldn't because the editor...
There is more returns for `self`: - `Window` on normal usage - `DedicatedWorkerGlobalScope` for dedicated web workers - `SharedWorkerGlobalScope` for shared web workers - `ServiceWorkerGlobalScope` for service workers The only...
@nojaf We could be less aggressive and just add a new module for each one, shadowing `self` when they are open. Not sure if the bindings take any space on...
The last time I tried to add just the `ServiceWorkerGlobalScope` and it was a horrible experience. As I added, the missing types would appear minutes later, modifying stuff were unbearably...
Was the file generated with an earlier version of `ts2fable`? The output is impossible to merge now, but if it was maybe we can reuse that earier version again.
Hi there! Apologies for the delay. That sounds like a great idea. I'll go ahead and implement those changes. The `BridgeConfig` type already implements `System.IDisposable`, we can return `this` on...
I checked it again, the `Program` helpers are [already migrated to the new format](https://github.com/Nhowka/Elmish.Bridge/blob/0134e2ad4566f5c254c5e80add39edbbef17371c/src/Client/Library.fs#L334-L344). We can probably make that code a helper to be shared with the path where we...
I added an extra commit to your fork, can you check if it works as intended? I'm at a computer without any projects using Bridge, so I only type-checked the...
> So if the use of bridgeConfigurator with "Some" is intended, then it can stay like you proposed. That's right, missed that! Version 7.1.0 of the clients were uploaded to...