svelte 5.48.1 → 5.48.2

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
@@ -2,7 +2,7 @@
2
2
  "name": "svelte",
3
3
  "description": "Cybernetically enhanced web apps",
4
4
  "license": "MIT",
5
- "version": "5.48.1",
5
+ "version": "5.48.2",
6
6
  "type": "module",
7
7
  "types": "./types/index.d.ts",
8
8
  "engines": {
@@ -103,7 +103,8 @@ export {
103
103
  run,
104
104
  save,
105
105
  track_reactivity_loss,
106
- run_after_blockers
106
+ run_after_blockers,
107
+ wait
107
108
  } from './reactivity/async.js';
108
109
  export { eager, flushSync as flush } from './reactivity/batch.js';
109
110
  export {
package/src/version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * The current version, as set in package.json.
5
5
  * @type {string}
6
6
  */
7
- export const VERSION = '5.48.1';
7
+ export const VERSION = '5.48.2';
8
8
  export const PUBLIC_VERSION = '5';