🐛 fix: resolve CI/CD build failures for manacore-web and todo-web

- Replace lucide-svelte with @lucide/svelte (Svelte 5 runes compatible)
- Add shared-splitscreen and shared-types to todo-web Dockerfile
- Update pnpm-lock.yaml with new dependencies

The old lucide-svelte package used $$props (Svelte 4 syntax) which
fails in Svelte 5 runes mode. The new @lucide/svelte package is
built specifically for Svelte 5.
This commit is contained in:
Wuesteon 2025-12-15 19:40:19 +01:00
parent 44e28bbba8
commit 263d779436
5 changed files with 17 additions and 15 deletions

View file

@ -44,7 +44,7 @@
"d3-transition": "^3.0.0",
"d3-zoom": "^3.0.0",
"date-fns": "^4.1.0",
"lucide-svelte": "^0.468.0"
"@lucide/svelte": "^0.561.0"
},
"devDependencies": {
"@types/d3-force": "^3.0.10",

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { ChevronDown, ChevronUp } from 'lucide-svelte';
import { ChevronDown, ChevronUp } from '@lucide/svelte';
interface Props {
/** Whether immersive mode is currently enabled */

View file

@ -1,5 +1,5 @@
<script lang="ts">
import { Search, ZoomIn, ZoomOut, RotateCcw, Filter, X, Focus, Keyboard } from 'lucide-svelte';
import { Search, ZoomIn, ZoomOut, RotateCcw, Filter, X, Focus, Keyboard } from '@lucide/svelte';
import type { NetworkTag } from './network.types';
interface Props {