Dominik G.

Results 155 comments of Dominik G.

this causes issues with vite, eg. https://github.com/sveltejs/kit/issues/1745 (I also saw it happen with windicss), so i'm in favor of providing sourcemaps where possible. In case of postcss i'm sure that...

Addendum: I think svelte-preprocess itself is a bit of a special case due to it's internal handling of multiple preprocess steps with a single preprocessor (`preprocess: sveltePreprocess()`), so it might...

Extending a generated tsconfig.json that contains fields which are not merged (include/exclude) and overridden if the user defines them in the top-level tsconfig.json seems dangerous. If we keep doing this...

@BenFenner this is not a support forum for a commercial website. please contact the owners/support for that site. ps. Looking at htxtps://www.spectrum.net i see `ng-version="13.2.6"` attributes which are a strong...

There are two issues on pnpm repo related to this: 1) https://github.com/pnpm/pnpm/issues/5002 2) https://github.com/pnpm/pnpm/issues/1394 Disabling the side-effects-cache globally in users projects may result in extra work. Alternative / workaround would...

> > ```shell > npm create svelte@latest test-postinstall > cd test-postinstall > pnpm dev > ``` that should fail spectacularly. You did not call `pnpm install` for me ``` pnpm...

to be able to avoid setting kit options in `svelte.config.js` we need to come up with a way how vite-plugin-svelte can get the value for `kit.browser.hydrate` as it currently reads...

i opened this primarily to align with general vite plugin usage where options are allowed to be passed inline. And as kit hides vite-plugin-svelte from users, they won't be able...

Do we want to add c8 + coverage script by default? I think vitest asks you to install c8 if you run --coverage without it. Adding it by default means...

I'd skip it until we have an idea/documentation to actually build a full coverage test suite, which may need an additional util for mocking kit things as required. Eg. hooks,...