Skip to content

Commit 78b6688

Browse files
authored
ETT-266: migrate to svelte 5 (#118)
* upgrade to svelte 5 * refactor component instantiation * component migration to svelte 5 - use migrate self-closing-tags to fix icon markup - add svelte prettier plugin, add minify false to babel script - convert store to runes - update svelte preprocess - migrate main.js to main.svelte.js - convert writable store to $state() proxy - update index with new file name for vite - update loginStatus logic in login modal components - remove unused components and references to them * code review fixes * update to svelte 5 syntax * convert search bar to svelte 5 syntax * convert navbar to svelte 5 syntax * refactor role switch modal * remove unused styles to silence build warnings * fix login modal and stories * still fixing login modal * change notification state rune, fix navbar story
1 parent 9c09ca7 commit 78b6688

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1471
-1282
lines changed

.github/workflows/tests.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99

1010
jobs:
1111
build:
12-
1312
runs-on: ubuntu-latest
1413

1514
steps:
@@ -19,10 +18,10 @@ jobs:
1918
with:
2019
node-version: '18.x'
2120
- run: npm i
22-
- run: npm run coverage
21+
- run: npm run test
2322

24-
- name: Report to Coveralls
25-
uses: coverallsapp/[email protected]
26-
with:
27-
github-token: ${{ secrets.github_token }}
28-
path-to-lcov: './src/coverage/lcov.info'
23+
# - name: Report to Coveralls
24+
# uses: coverallsapp/[email protected]
25+
# with:
26+
# github-token: ${{ secrets.github_token }}
27+
# path-to-lcov: './src/coverage/lcov.info'

0 commit comments

Comments
 (0)