upgrade lucide
This commit is contained in:
parent
fc5f3e9b08
commit
6add8bb344
9 changed files with 9 additions and 9 deletions
6
bun.lock
6
bun.lock
|
|
@ -5,9 +5,9 @@
|
|||
"name": "benjaminpalko.github.io",
|
||||
"dependencies": {
|
||||
"@humanspeak/svelte-markdown": "^0.8.7",
|
||||
"@lucide/svelte": "^0.516.0",
|
||||
"@strapi/client": "^1.4.0",
|
||||
"dayjs": "^1.11.13",
|
||||
"lucide-svelte": "^0.503.0",
|
||||
"nodemailer": "^6.10.1",
|
||||
"pino": "^9.6.0",
|
||||
},
|
||||
|
|
@ -316,6 +316,8 @@
|
|||
|
||||
"@lezer/lr": ["@lezer/lr@1.4.2", "", { "dependencies": { "@lezer/common": "^1.0.0" } }, "sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA=="],
|
||||
|
||||
"@lucide/svelte": ["@lucide/svelte@0.516.0", "", { "peerDependencies": { "svelte": "^5" } }, "sha512-Ovkg2IgUeF85guSbnG9iPwUMMRuz+rdh8HsnKbD1uEY2Wv3d9qf0ERKFrz0ePZqmPXOedCPcf2a/rvRsqkaZcw=="],
|
||||
|
||||
"@marijn/find-cluster-break": ["@marijn/find-cluster-break@1.0.2", "", {}, "sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g=="],
|
||||
|
||||
"@mux/mux-player": ["@mux/mux-player@3.1.0", "", { "dependencies": { "@mux/mux-video": "0.22.0", "@mux/playback-core": "0.27.0", "media-chrome": "~4.2.1", "player.style": "^0.0.8" } }, "sha512-vU7HjvM3KLDfMwMfjbotlhjQrakwm9A4zixxtzBdxwDMLKf0FUKiFOGyTGOdsIKNBRVlS5Ffz9ERU+3Hh+XcBQ=="],
|
||||
|
|
@ -1782,8 +1784,6 @@
|
|||
|
||||
"lru-memoizer": ["lru-memoizer@2.3.0", "", { "dependencies": { "lodash.clonedeep": "^4.5.0", "lru-cache": "6.0.0" } }, "sha512-GXn7gyHAMhO13WSKrIiNfztwxodVsP8IoZ3XfrJV4yH2x0/OeTO/FIaAHTY5YekdGgW94njfuKmyyt1E0mR6Ug=="],
|
||||
|
||||
"lucide-svelte": ["lucide-svelte@0.503.0", "", { "peerDependencies": { "svelte": "^3 || ^4 || ^5.0.0-next.42" } }, "sha512-oT1idMbgJKCCLWI4U7bdUYUZqxS78fiTGJuKGZ5u0NJNyuiUErDu3G7sXkYpfDwwspeid7gZSjrlJbTINEfErw=="],
|
||||
|
||||
"lunr": ["lunr@2.3.9", "", {}, "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow=="],
|
||||
|
||||
"luxon": ["luxon@3.6.1", "", {}, "sha512-tJLxrKJhO2ukZ5z0gyjY1zPh3Rh88Ej9P7jNrZiHMUXHae1yvI2imgOZtL1TO8TW6biMMKfTtAOoEJANgtWBMQ=="],
|
||||
|
|
|
|||
|
|
@ -47,9 +47,9 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@humanspeak/svelte-markdown": "^0.8.7",
|
||||
"@lucide/svelte": "^0.516.0",
|
||||
"@strapi/client": "^1.4.0",
|
||||
"dayjs": "^1.11.13",
|
||||
"lucide-svelte": "^0.503.0",
|
||||
"nodemailer": "^6.10.1",
|
||||
"pino": "^9.6.0"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<script lang="ts">
|
||||
import dayjs from 'dayjs';
|
||||
import { Link } from 'lucide-svelte';
|
||||
import { Link } from '@lucide/svelte';
|
||||
|
||||
interface Props {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { Menu } from 'lucide-svelte';
|
||||
import { Menu } from '@lucide/svelte';
|
||||
|
||||
interface Props {
|
||||
drawerId: string;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { TriangleAlertIcon } from 'lucide-svelte';
|
||||
import { TriangleAlertIcon } from '@lucide/svelte';
|
||||
|
||||
const messages = ['Under Construction', 'Caution', 'Work In Progress', 'Hard-hats required!'];
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
Send,
|
||||
TriangleAlert,
|
||||
UserRound
|
||||
} from 'lucide-svelte';
|
||||
} from '@lucide/svelte';
|
||||
import type { PageProps } from './$types';
|
||||
|
||||
let { form }: PageProps = $props();
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<script lang="ts">
|
||||
import dayjs from 'dayjs';
|
||||
import type { PageProps } from './$types';
|
||||
import { Briefcase, Heart, Zap } from 'lucide-svelte';
|
||||
import { Briefcase, Heart, Zap } from '@lucide/svelte';
|
||||
|
||||
let { data }: PageProps = $props();
|
||||
|
||||
|
|
|
|||
BIN
static/background.jpg
Normal file
BIN
static/background.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 MiB |
BIN
static/me.jpg
Normal file
BIN
static/me.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 448 KiB |
Loading…
Add table
Add a link
Reference in a new issue