Will Henderson
Will Henderson
How awesome is Travis? :-D I'll sort out whatever the issue is and get this sorted.
Seems that something in the chain is getting confused about line endings which are then encoded in the sourcemaps. Suspicion is that something is auto-converting from unix to windows line...
Looks like my coffee test file had \r\n line endings at the time I generated the fixtures. Thus, the \r\n got "baked in" to the source map. All sorted now.
Hi CodeMan, I'm afraid I haven't looked at umd stuff in a considerable amount of time. I'll leave this on my radar, but I have no idea when I will...
Hi niemyjski, I'm not the maintainer but since I was already here looking to get my pull request merged, I thought I'd answer. Its probably not as clear as it...
> Yes, I suppose it could be a variant of the derived store that waits for the next tick. Alternatively, there could be an explicit `batch` function like in the...
> Another solution to solve this problem is to "exclude" the unneeded variable from the reactive block: This is the system I use to control what data is being reacted...
The standard svelte stores have a few limitations which can manifest as bugs. The readme for @crikey/stores-base has details, but I should put some links to them in that stores-svelte...
Moving context from #10451 ## Example Consider the following example: ```js const a = writable(1); const b = derived(a, a => a*2); const c = derived([a,b], ([a,b]) => a+b); c.subscribe(c...
@mnrx, what was you basic solution for resolving this? The solution I went for was to have an "invalidate" and "revalidate" option for the subscribe method. A deep invalidation was...