Dominik G.
Dominik G.
reasons: node16 and node18 have differences in network stack defaults windows file system is a bitch on windows some shell commands might not work as expected, so either force shell...
#33 focuses on using it for forks of vite (PR), but the general pattern of executing downstream ci's is interesting for a lot of ecosystems. eg. svelte, nuxt, vue -...
To be able to run PRs from forks
### Describe the problem It is common for vite plugins to offer config options via first parameter to the initializer function. With svelte-kit you currently have to define all options...
just something that popped into my head a minute ago * collect all referenced icons into one svg sprite with ids for each (maybe one sprite per collection to avoid...
### Describe the problem Current implementation in svelte-hmr self-accepts updates to Component.svelte, which can cause broken references for exports of `context=module` scripts. see #134 ### Describe the proposed solution Instead...
**Describe the feature** Currently vite only knows that `.svelte` is transformed to js but svelte can be used with other extensions aswell (eg `.svx` , `.svg` ) 1) enhance vite...
docs: https://svelte.dev/docs#template-syntax-svelte-element changelog: https://github.com/sveltejs/svelte/blob/master/CHANGELOG.md#3470 PR: https://github.com/sveltejs/svelte/issues/2324
**Describe the feature** When allowJs is true, also add js extensions to extension list. .js, .mjs, .cjs, .jsx **A Usecase** Projects with mixed js/ts usage **Alternatives** Don't do it **Additional...
App.svelte ```html h1 { @apply text-svelte-500 p-2 bg-green-200; } @screen sm { h1 { @apply text-blue-500; } } ``` is turned into ```css @media (min-width: 640px) { @apply text-blue-500; }...