Rich Harris
Rich Harris
```js // input if ( a ) { obj = {} } else { obj = null; } // ideal obj=a?{}:null // actual a?(obj={}):(obj=null) ``` Uglify and Closure both get...
### Describe the bug When using `crossfade` to transition between two elements, the `in` element goes from 0 to `o` (where `o` is the natural opacity) while the `out` element...
### Describe the bug Bear with me, this is a bit of an edge case. If you have code like [this](https://svelte.dev/repl/d28fe0d4900d4a88b297c0f806d12067?version=3.46.4)... ```svelte let h = 0; const html = 'this...
#815 added a bunch of these, but there are still some checks from [eslint-plugin-jsx-a11y](https://github.com/evcohen/eslint-plugin-jsx-a11y) that aren't implemented yet: * [ ] [accessible-emoji](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/accessible-emoji.md) * [x] [alt-text](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/alt-text.md) * [x] [anchor-has-content](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md) * [x]...
Edited: this now incorporates #5782 and #5810. This PR implements #5748. * [ ] use the app's installed TypeScript rather than including it in SvelteKit (i.e. don't generate types otherwise)...
### Describe the problem As of #3412, SvelteKit is able to recover from navigations that are broken as a result of an updated version, which is important piece of #87....
### Describe the problem #5663 adds a new set of modules — `$env/static/private`, `$env/static/public`, `$env/dynamic/private` and `$env/dynamic/public`. These explicitly relate to environment variables aka 'env vars', and as such it's...
### Describe the problem #5663 adds new modules with environment variables. In some cases it's useful to be able to access those env vars in a service worker. It only...