add EventSource to the known globals (#5468)

pull/5472/head
Tan Li Hau 4 years ago committed by GitHub
parent 46a83a50e3
commit 296e81af4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,9 @@
# Svelte changelog
## Unreleased
* Add `EventSource` to known globals ([#5463](https://github.com/sveltejs/svelte/issues/5463))
## 3.28.0
* Add `{#key}` block for keying arbitrary content on an expression ([#1469](https://github.com/sveltejs/svelte/issues/1469))

@ -18,6 +18,7 @@ export const globals = new Set([
'Error',
'EvalError',
'Event',
'EventSource',
'fetch',
'global',
'globalThis',

Loading…
Cancel
Save