mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 05:21:23 +02:00
🐛 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:
parent
44e28bbba8
commit
263d779436
5 changed files with 17 additions and 15 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue