chore: update dependencies

This commit is contained in:
Martin Prokoph
2025-01-27 22:56:53 +01:00
parent f113f526f1
commit dbd229c28c
4 changed files with 1971 additions and 3042 deletions

1
.gitignore vendored
View File

@@ -26,3 +26,4 @@ yarn-error.log*
# package lock # package lock
#package-lock.json #package-lock.json
.astro/settings.json .astro/settings.json
/.astro

4994
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -11,9 +11,9 @@
"preview": "astro preview" "preview": "astro preview"
}, },
"devDependencies": { "devDependencies": {
"@astrojs/mdx": "^4.0.3", "@astrojs/mdx": "^4.0.7",
"@astrojs/partytown": "^2.1.2", "@astrojs/partytown": "^2.1.3",
"@astrojs/tailwind": "^5.1.4", "@astrojs/tailwind": "^5.1.5",
"@iconify-json/ion": "^1.2.0", "@iconify-json/ion": "^1.2.0",
"@iconify-json/line-md": "^1.2.4", "@iconify-json/line-md": "^1.2.4",
"@iconify-json/mdi": "^1.2.0", "@iconify-json/mdi": "^1.2.0",
@@ -21,7 +21,7 @@
"@typescript-eslint/eslint-plugin": "^8.6.0", "@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0", "@typescript-eslint/parser": "^8.6.0",
"accessible-astro-components": "^2.3.6", "accessible-astro-components": "^2.3.6",
"astro": "^5.1.1", "astro": "^5.1.10",
"astro-compress": "^2.3.1", "astro-compress": "^2.3.1",
"astro-icon": "^1.1.1", "astro-icon": "^1.1.1",
"eslint": "^9.10.0", "eslint": "^9.10.0",
@@ -35,7 +35,7 @@
"tailwindcss": "^3.4.12" "tailwindcss": "^3.4.12"
}, },
"dependencies": { "dependencies": {
"@astrojs/alpinejs": "^0.4.1", "@astrojs/alpinejs": "^0.4.3",
"@types/alpinejs": "^3.13.10", "@types/alpinejs": "^3.13.10",
"@types/rellax": "^1.7.7", "@types/rellax": "^1.7.7",
"alpinejs": "^3.14.1", "alpinejs": "^3.14.1",

View File

@@ -1,3 +1,5 @@
@use "sass:map";
@use "sass:meta";
// | ------------------------------------------------------------- // | -------------------------------------------------------------
// | Breakpoint // | Breakpoint
// | ------------------------------------------------------------- // | -------------------------------------------------------------
@@ -10,11 +12,11 @@ $breakpoints: (
) !default; ) !default;
@mixin breakpoint($breakpoint) { @mixin breakpoint($breakpoint) {
@if map-has-key($breakpoints, $breakpoint) { @if map.has-key($breakpoints, $breakpoint) {
@media (min-width: map-get($breakpoints, $breakpoint)) { @media (min-width: map.get($breakpoints, $breakpoint)) {
@content; @content;
} }
} @else if (type_of($breakpoint) == number) { } @else if (meta.type_of($breakpoint) == number) {
@media (min-width: $breakpoint+"px") { @media (min-width: $breakpoint+"px") {
@content; @content;
} }