fuma 2.5.0 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,8 +15,8 @@ export const zodCoerceJson = z.string().transform((str, ctx) => {
15
15
  try {
16
16
  return JSON.parse(str);
17
17
  }
18
- catch (e) {
19
- console.error(e);
18
+ catch (err) {
19
+ void err;
20
20
  ctx.addIssue({ code: 'custom', message: 'Invalid JSON' });
21
21
  return z.NEVER;
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fuma",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "description": "My fullstack material build with sveltekit, daisyui, zod, prisma, lucia",
5
5
  "author": {
6
6
  "name": "Jonas Voisard",