Skip to content

Commit b2195dd

Browse files
1 parent 6ef4ceb commit b2195dd

File tree

28 files changed

+202
-197
lines changed

28 files changed

+202
-197
lines changed

.changeset/gentle-baths-live.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-better-t-stack": patch
3+
---
4+
5+

apps/cli/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@
6464
"picocolors": "^1.1.1",
6565
"posthog-node": "^5.1.1",
6666
"trpc-cli": "^0.9.2",
67-
"ts-morph": "^26.0.0",
68-
"zod": "^3.25.67"
67+
"ts-morph": "^26.0.0"
6968
},
7069
"devDependencies": {
7170
"@types/fs-extra": "^11.0.4",

apps/cli/templates/auth/web/nuxt/app/components/SignInForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import z from 'zod/v4'
2+
import z from 'zod'
33
const {$authClient} = useNuxtApp()
44
import type { FormSubmitEvent } from '#ui/types'
55

apps/cli/templates/auth/web/nuxt/app/components/SignUpForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import z from 'zod/v4'
2+
import z from 'zod'
33
import type { FormSubmitEvent } from '#ui/types'
44
const {$authClient} = useNuxtApp()
55

apps/cli/templates/auth/web/react/next/src/components/sign-in-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { authClient } from "@/lib/auth-client";
22
import { useForm } from "@tanstack/react-form";
33
import { toast } from "sonner";
4-
import z from "zod/v4";
4+
import z from "zod";
55
import Loader from "./loader";
66
import { Button } from "./ui/button";
77
import { Input } from "./ui/input";

apps/cli/templates/auth/web/react/next/src/components/sign-up-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { authClient } from "@/lib/auth-client";
22
import { useForm } from "@tanstack/react-form";
33
import { toast } from "sonner";
4-
import z from "zod/v4";
4+
import z from "zod";
55
import Loader from "./loader";
66
import { Button } from "./ui/button";
77
import { Input } from "./ui/input";

apps/cli/templates/auth/web/react/react-router/src/components/sign-in-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { authClient } from "@/lib/auth-client";
22
import { useForm } from "@tanstack/react-form";
33
import { useNavigate } from "react-router";
44
import { toast } from "sonner";
5-
import z from "zod/v4";
5+
import z from "zod";
66
import Loader from "./loader";
77
import { Button } from "./ui/button";
88
import { Input } from "./ui/input";

apps/cli/templates/auth/web/react/react-router/src/components/sign-up-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { authClient } from "@/lib/auth-client";
22
import { useForm } from "@tanstack/react-form";
33
import { useNavigate } from "react-router";
44
import { toast } from "sonner";
5-
import z from "zod/v4";
5+
import z from "zod";
66
import Loader from "./loader";
77
import { Button } from "./ui/button";
88
import { Input } from "./ui/input";

apps/cli/templates/auth/web/react/tanstack-router/src/components/sign-in-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { authClient } from "@/lib/auth-client";
22
import { useForm } from "@tanstack/react-form";
33
import { useNavigate } from "@tanstack/react-router";
44
import { toast } from "sonner";
5-
import z from "zod/v4";
5+
import z from "zod";
66
import Loader from "./loader";
77
import { Button } from "./ui/button";
88
import { Input } from "./ui/input";

apps/cli/templates/auth/web/react/tanstack-router/src/components/sign-up-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { authClient } from "@/lib/auth-client";
22
import { useForm } from "@tanstack/react-form";
33
import { useNavigate } from "@tanstack/react-router";
44
import { toast } from "sonner";
5-
import z from "zod/v4";
5+
import z from "zod";
66
import Loader from "./loader";
77
import { Button } from "./ui/button";
88
import { Input } from "./ui/input";

0 commit comments

Comments
 (0)