kwangure
kwangure
**Is your feature request related to a problem? Please describe.** The `Svelte: Show Compiled Code` feature is helpful for compiling JS code, but there seems to be no CSS equivalent....
[Rendered](https://github.com/kwangure/rfcs/blob/master/text/0000-svelte-this.md)
### Describe the problem At present you need to add types for the service worker to clue TypeScript in about the `WebWorker` scope and set `self` to `ServiceWorkerGlobalScope`. ### Describe...
### Describe the bug SvelteKit now wraps errors in a Proxy making it unbearable work with errors and stack traces in VS Code. I upgraded my project to a recent...
### Describe the bug CSS now has pretty [wide support](https://caniuse.com/css-cascade-layers) for `@layer`/layer(). However Svelte chokes on `@import` statements assigned to a particular layer. ```css @import url("bootstrap.css") layer(framework); ``` You can...
### Describe the bug Given the following element: ```html ``` Svelte outputs the following in the AST: For `{a}`: ```javascript value: [{ start: 6, end: 7, type: "AttributeShorthand", expression: {...
### Describe the bug Given the following element: ```html ``` Svelte outputs the following in the AST. For `'a'`: ```javascript value: [{ start: 12, end: 13, type: "Text", ... }]...
I usually [use `npm pack` to test files locally ](https://twitter.com/Jack_Franklin/status/1357277541220954114). That has resulted in the tarball install path ending up in a published package before. It would be nice if...
### Describe the problem `svelte-package` warns you when you include a Svelte-specific or SvelteKit-specific import in your package but do not include it in `dependencies` or `peerDependencies`. If not including...
This is a question. Did you explore [well known symbols](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol#well-known_symbols) while ideating on Reactively? `Symbol.toPrimitive` is relevant to Reactively as a convinence so that you don't have to read with...