create-z3 0.0.49 → 0.0.50

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-z3",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "type": "module",
5
5
  "description": "CLI for scaffolding Z3 Stack applications (TanStack/Next.js + Convex + Better Auth)",
6
6
  "bin": {
@@ -13,6 +13,7 @@
13
13
  "format": "prettier --write . --cache",
14
14
  "format:check": "prettier --check . --cache",
15
15
  "validate": "pnpm run typecheck && pnpm run lint && pnpm run format:check",
16
+ "convex": "convex",
16
17
  "secret:create": "openssl rand -hex 32 | tr -d '\\n' | pbcopy && echo '✅ Secret generated and copied to clipboard!'"
17
18
  },
18
19
  "dependencies": {
@@ -0,0 +1,2 @@
1
+ packages:
2
+ - .
@@ -63,7 +63,7 @@ function RootComponent() {
63
63
  function RootDocument({ children }: { children: React.ReactNode }) {
64
64
  const theme = Route.useLoaderData()
65
65
  return (
66
- <html lang="en">
66
+ <html lang="en" suppressHydrationWarning>
67
67
  <head>
68
68
  <HeadContent />
69
69
  </head>