Skip to content

Commit b0e58eb

Browse files
committed
chore(deps): update dependencies
1 parent bc5745c commit b0e58eb

File tree

7 files changed

+939
-813
lines changed

7 files changed

+939
-813
lines changed

apps/ip-address-tracker/src/layouts/Layout.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import Atributtion from 'shared/components/Atributtion.astro'
5151
is:inline
5252
src="https://unpkg.com/[email protected]/dist/leaflet.js"
5353
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
54-
crossorigin></script>
54+
crossorigin=""></script>
5555

5656
<script src="@/scripts/declareRefs.ts"></script>
5757
<script src="@/scripts/validation.ts"></script>

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
"pnpm": ">=8.15.0"
2323
},
2424
"dependencies": {
25-
"astro": "4.11.5"
25+
"astro": "4.14.5"
2626
},
2727
"devDependencies": {
28-
"@astrojs/check": "0.7.0",
28+
"@astrojs/check": "0.9.3",
2929
"@astrojs/tailwind": "5.1.0",
3030
"eslint-config-custom": "workspace:*",
3131
"shared": "workspace:*",
32-
"sharp": "0.33.4",
32+
"sharp": "0.33.5",
3333
"typescript": "5.3.3",
34-
"vite": "5.3.3"
34+
"vite": "5.4.2"
3535
}
3636
}

packages/eslint-config-custom/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"@typescript-eslint/parser": "6.21.0",
99
"eslint": "8.57.0",
1010
"eslint-config-standard-with-typescript": "43.0.1",
11-
"eslint-plugin-astro": "1.2.2"
11+
"eslint-plugin-astro": "1.2.3"
1212
}
1313
}

packages/shared/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"check": "astro check --tsconfig tsconfig.json"
1010
},
1111
"devDependencies": {
12-
"@types/node": "20.14.10",
12+
"@types/node": "22.5.0",
1313
"astro-icon": "0.8.2",
1414
"eslint-config-custom": "workspace:*",
15-
"prettier": "3.3.2",
16-
"prettier-plugin-astro": "0.14.0",
17-
"prettier-plugin-tailwindcss": "0.6.5",
18-
"tailwindcss": "3.4.4",
19-
"vite": "5.3.3"
15+
"prettier": "3.3.3",
16+
"prettier-plugin-astro": "0.14.1",
17+
"prettier-plugin-tailwindcss": "0.6.6",
18+
"tailwindcss": "3.4.10",
19+
"vite": "5.4.2"
2020
}
2121
}

pnpm-lock.yaml

+924-793
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/LevelTag.astro

+2-8
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,10 @@ const borderColor = 'border-' + levelColor
2020
extraClass
2121
]}
2222
>
23-
<span class:list={[
24-
bgColor,
25-
'block h-full rounded-l-sm px-2 text-white md:px-3'
26-
]}>
23+
<span class:list={[bgColor, 'block h-full rounded-l-sm px-2 text-white md:px-3']}>
2724
{level}
2825
</span>
29-
<span class:list={[
30-
textColor,
31-
'block px-1.5 uppercase md:px-3'
32-
]}>
26+
<span class:list={[textColor, 'block px-1.5 uppercase md:px-3']}>
3327
{levelColor}
3428
</span>
3529
</div>

src/env.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
/// <reference path="../.astro/types.d.ts" />
12
/// <reference types="astro/client" />

0 commit comments

Comments
 (0)