chore(web): Update to Svelte 4 ()

* trying to update to svelte 4

* update dependencies

* remove global transition

* suppress wrning

* chore: install from github

* revert material icon change

* Supress a11y warning

* update

* remove coverage test on web

---------

Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
This commit is contained in:
Alex 2023-07-15 20:13:04 -05:00 committed by GitHub
commit d5b96c0257
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 20695 additions and 20492 deletions

View file

@ -4,7 +4,12 @@ import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: preprocess(),
onwarn: (warning, handler) => {
if (warning.code.includes('a11y')) {
return;
}
handler(warning);
},
kit: {
adapter: adapter({ out: 'build' }),
},