From d97bc589f0fe87b2b1ada95a5a62f439c3b0539c Mon Sep 17 00:00:00 2001 From: m5rcel { Marcel } Date: Tue, 9 Dec 2025 09:20:41 +0100 Subject: [PATCH] feat: Update dependencies and CDN imports Updates `framer-motion` and `lucide-react` to specific versions. Also refactors CDN imports in `index.html` to use `esm.sh` for React v18, aligning with the updated dependencies and ensuring correct module resolution. --- index.html | 15 +++++++++------ index.tsx | 1 + package.json | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index ef0f428..255f31e 100644 --- a/index.html +++ b/index.html @@ -92,18 +92,21 @@ text-shadow: 0 -1px 0 rgba(0,0,0,0.6); } - - +
diff --git a/index.tsx b/index.tsx index 1da1849..aefea65 100644 --- a/index.tsx +++ b/index.tsx @@ -7,6 +7,7 @@ if (!rootElement) { throw new Error("Could not find root element to mount to"); } +console.log('Mounting App...'); const root = createRoot(rootElement); root.render( diff --git a/package.json b/package.json index 3625c5d..85bc2c2 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "dependencies": { "react": "^19.2.1", "react-dom": "^19.2.1", - "framer-motion": "^12.23.25", - "lucide-react": "^0.556.0" + "framer-motion": "10.16.4", + "lucide-react": "0.292.0" }, "devDependencies": { "@types/node": "^22.14.0",