feat(cli): add alchemy and improve cli tooling and structure (#520)

This commit is contained in:
Aman Varshney
2025-08-20 23:43:58 +05:30
committed by GitHub
parent c5430ae4fd
commit 5788876c47
152 changed files with 5804 additions and 2264 deletions

View File

@@ -5,6 +5,8 @@
.nitro
.cache
dist
.wrangler
.alchemy
# Node dependencies
node_modules
@@ -22,3 +24,4 @@ logs
.env
.env.*
!.env.example

View File

@@ -12,9 +12,7 @@
},
{
"path": "./.nuxt/tsconfig.node.json"
}
{{#unless (or (eq backend "convex") (eq backend "none"))}}
,
}{{#unless (or (eq backend "convex") (eq backend "none"))}},
{
"path": "../server"
}

View File

@@ -26,6 +26,7 @@
.vercel
.netlify
.wrangler
.alchemy
# Environment & local files
.env*

View File

@@ -6,7 +6,6 @@ import { NavLink } from "react-router";
{{else if (or (includes frontend "tanstack-router") (includes frontend "tanstack-start"))}}
import { Link } from "@tanstack/react-router";
{{/if}}
{{#unless (includes frontend "tanstack-start")}}
import { ModeToggle } from "./mode-toggle";
{{/unless}}

View File

@@ -7,4 +7,5 @@ dist-ssr
.env.*
.wrangler
.alchemy
.dev.vars*

View File

@@ -13,7 +13,6 @@
"@tanstack/router-plugin": "^1.109.2",
"@tanstack/solid-form": "^1.9.0",
"@tanstack/solid-router": "^1.110.0",
"@tanstack/solid-router-devtools": "^1.109.2",
"lucide-solid": "^0.507.0",
"solid-js": "^1.9.4",
"tailwindcss": "^4.0.6",

View File

@@ -5,6 +5,7 @@ node_modules
.vercel
.netlify
.wrangler
.alchemy
/.svelte-kit
/build

View File

@@ -12,20 +12,18 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/kit": "^2.20.7",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.1.4",
"svelte": "^5.28.2",
"svelte-check": "^4.1.6",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"@tanstack/svelte-query-devtools": "^5.74.6",
"vite": "^7.0.2"
"@sveltejs/adapter-auto": "^6.1.0",
"@sveltejs/kit": "^2.31.1",
"@sveltejs/vite-plugin-svelte": "^6.1.2",
"@tailwindcss/vite": "^4.1.12",
"svelte": "^5.38.1",
"svelte-check": "^4.3.1",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2",
"vite": "^7.1.2"
},
"dependencies": {
"@tanstack/svelte-form": "^1.7.0",
"@tanstack/svelte-query": "^5.74.4",
"zod": "^4.0.2"
"@tanstack/svelte-form": "^1.19.2",
"zod": "^4.0.17"
}
}