Skip to content

Commit 093d463

Browse files
committed
yarn upgrade
1 parent 7db209b commit 093d463

File tree

3 files changed

+313
-231
lines changed

3 files changed

+313
-231
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
"@astrojs/mdx": "^3.1.8",
3131
"@astrojs/partytown": "^2.1.2",
3232
"@astrojs/react": "^3.6.1",
33-
"@astrojs/sitemap": "^3.2.0",
33+
"@astrojs/sitemap": "^3.2.1",
3434
"@astrojs/tailwind": "^5.1.2",
3535
"@fontsource-variable/inter": "^5.1.0",
36-
"astro": "^4.16.2",
36+
"astro": "^4.16.7",
3737
"astro-embed": "^0.7.4",
38-
"astro-expressive-code": "^0.37.0",
38+
"astro-expressive-code": "^0.37.1",
3939
"astro-icon": "^1.1.0",
4040
"astro-remote": "^0.3.3",
4141
"astro-social-share": "^2.0.2",
@@ -56,32 +56,32 @@
5656
"reading-time": "^1.5.0",
5757
"sharp": "0.32.6",
5858
"tailwind-clip-path": "^1.0.0",
59-
"tailwind-merge": "^2.5.3",
59+
"tailwind-merge": "^2.5.4",
6060
"zod": "^3.23.4"
6161
},
6262
"devDependencies": {
6363
"@astrojs/check": "^0.9.4",
64-
"@expressive-code/plugin-collapsible-sections": "^0.37.0",
64+
"@expressive-code/plugin-collapsible-sections": "^0.37.1",
6565
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
6666
"@iconify-json/mdi": "^1.2.1",
6767
"@tailwindcss/typography": "^0.5.15",
6868
"@types/mdast": "^4.0.3",
69-
"@types/react": "^18.3.11",
69+
"@types/react": "^18.3.12",
7070
"@types/react-dom": "^18.3.1",
71-
"@typescript-eslint/eslint-plugin": "^8.8.1",
72-
"@typescript-eslint/parser": "^8.8.1",
71+
"@typescript-eslint/eslint-plugin": "^8.11.0",
72+
"@typescript-eslint/parser": "^8.11.0",
7373
"eslint": "8.57.0",
7474
"eslint-config-prettier": "^9.1.0",
7575
"eslint-mdx": "^3.1.5",
76-
"eslint-plugin-astro": "^1.2.4",
76+
"eslint-plugin-astro": "^1.3.0",
7777
"eslint-plugin-mdx": "^3.1.5",
7878
"eslint-plugin-tailwindcss": "^3.17.5",
7979
"prettier": "^3.3.3",
8080
"prettier-plugin-astro": "^0.14.1",
8181
"satori": "^0.11.2",
8282
"satori-html": "^0.3.2",
83-
"serve": "^14.2.3",
84-
"tailwindcss": "^3.4.13",
83+
"serve": "^14.2.4",
84+
"tailwindcss": "^3.4.14",
8585
"typescript": "^5.6.3"
8686
},
8787
"resolutions": {

src/utils/validation.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { z, ZodSchema } from 'zod';
1+
import { z } from 'zod';
2+
3+
import type { ZodSchema } from 'zod';
24

35
export const zodErrorToString = (error: z.ZodError): string => {
46
return error.errors.map((err: z.ZodIssue) => `${err.path.join('.')}: ${err.message}`).join(', ');

0 commit comments

Comments
 (0)