Eric Fulton

Results 14 comments of Eric Fulton

@bricelam I'd like to replicate what you've done. Would you mind sharing where you download the native assets? I get: ``` Exception: Library e_sqlite3 not found plat: dlopen suffix: DYLIB...

It would be really nice to have this as a configuration option.

Is this being maintained?

I wasn't able to reopen the [old issue](https://github.com/sveltejs/svelte/issues/10238), sorry for creating a new one.

Ah, ok so this is expected behavior. Unfortunately, the example I've given is somewhat contrived. My actual use case is more complicated in that "toCallOnUpdate" is being called by something...

Apologies, I should say I'm actually unstuck by using get() on the store directly. I just wanted to file a bug in case this was unexpected behavior and potentially affecting...

In addition to the provided repro, I found another example: I have a store that represents when something is loading. ``` export class IsLoadingStore implements Readable { private _pendingChanges: number;...

I'm not sure anyone checks this repo's issues unfortunately. Might be that the VS Code repo is where I should have reported this.

I believe this is because updateNodeDimensions is called in requestAnimationFrame. I propose making updateNodeInternals async. Here's what I'm using for a workaround: ``` export async function updateNodeInternals( id: string |...

Hey @peterkogo! Thanks for taking a look. The issue actually has nothing to do with Svelte per se. `updateNodeInternals` uses `requestAnimationFrame` to updateNodeDimensions. `requestAnimationFrame` is asyncronous which means you have...