Robin Munn
Robin Munn
I managed to get the templates loading without any manual steps, by configuring Webpack with the following in my webpack.config.js file (using Webpack 3.11.0): ```javascript module: { rules: [ //...
Note that @dummdidumm assigned #6786 to the "One Day" milestone [on March 20](https://github.com/sveltejs/svelte/pull/6786#event-8794410945). This one will probably also go in the same milestone.
Probably a duplicate of #1755, which tells you how long this problem has been around.
Like #6750, this would probably be a breaking change for anyone creating custom derived stores, because the Typescript definition of the callback passed to `derived` would end up changing. But...
I thought of this while working on implementing #6750, when I saw that the code tracks a `pending` bitmap. The advantage of a bitmap over a boolean array is indeed...
The bit that would break with more than 32 stores is the `pending` bitmap, which is only used to ensure that the "diamond dependency" problem doesn't cause undesired updates. It's...
Just realized that with a Boolean array, you can use array dereferencing just as you can with store values. So instead of writing `if (changed[0])` you can write `if (priceChanged)`....
PR #6786 implementing this change has been replaced with PR #8656.
> With the proposed signature `(values, set, update, changed)`, users are (almost1) forced to declare their callbacks as asynchronous. What if a user want's a simple synchronous derived value (one...
I was just dealing with a problem trying to make a grid-based layout for editions/tw5.com, which includes the menubar plugin. The menubar is transcluded and has an extraneous `` element...