Skip to content

Commit

Permalink
yarn upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
nemanjam committed Oct 23, 2024
1 parent 7db209b commit 093d463
Show file tree
Hide file tree
Showing 3 changed files with 313 additions and 231 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
"@astrojs/mdx": "^3.1.8",
"@astrojs/partytown": "^2.1.2",
"@astrojs/react": "^3.6.1",
"@astrojs/sitemap": "^3.2.0",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@fontsource-variable/inter": "^5.1.0",
"astro": "^4.16.2",
"astro": "^4.16.7",
"astro-embed": "^0.7.4",
"astro-expressive-code": "^0.37.0",
"astro-expressive-code": "^0.37.1",
"astro-icon": "^1.1.0",
"astro-remote": "^0.3.3",
"astro-social-share": "^2.0.2",
Expand All @@ -56,32 +56,32 @@
"reading-time": "^1.5.0",
"sharp": "0.32.6",
"tailwind-clip-path": "^1.0.0",
"tailwind-merge": "^2.5.3",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@expressive-code/plugin-collapsible-sections": "^0.37.0",
"@expressive-code/plugin-collapsible-sections": "^0.37.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@iconify-json/mdi": "^1.2.1",
"@tailwindcss/typography": "^0.5.15",
"@types/mdast": "^4.0.3",
"@types/react": "^18.3.11",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-mdx": "^3.1.5",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-tailwindcss": "^3.17.5",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"satori": "^0.11.2",
"satori-html": "^0.3.2",
"serve": "^14.2.3",
"tailwindcss": "^3.4.13",
"serve": "^14.2.4",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"resolutions": {
Expand Down
4 changes: 3 additions & 1 deletion src/utils/validation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { z, ZodSchema } from 'zod';
import { z } from 'zod';

import type { ZodSchema } from 'zod';

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

0 comments on commit 093d463

Please sign in to comment.