svelte 5.39.8 → 5.39.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -285,6 +285,13 @@ export class Boundary {
|
|
|
285
285
|
this.#anchor.before(this.#offscreen_fragment);
|
|
286
286
|
this.#offscreen_fragment = null;
|
|
287
287
|
}
|
|
288
|
+
|
|
289
|
+
// TODO this feels like a little bit of a kludge, but until we
|
|
290
|
+
// overhaul the boundary/batch relationship it's probably
|
|
291
|
+
// the most pragmatic solution available to us
|
|
292
|
+
queue_micro_task(() => {
|
|
293
|
+
Batch.ensure().flush();
|
|
294
|
+
});
|
|
288
295
|
}
|
|
289
296
|
}
|
|
290
297
|
|
package/src/version.js
CHANGED