feat(cli): add ultracite, oxlint, fumadocs addons (#427)

This commit is contained in:
Aman Varshney
2025-07-29 00:13:51 +05:30
committed by GitHub
parent 82a4f42eca
commit 216c242f7d
66 changed files with 794 additions and 251 deletions

View File

@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.0.0/schema.json",
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
@@ -20,7 +20,8 @@
"!**/.nuxt",
"!bts.jsonc",
"!**/.expo",
"!**/.wrangler"
"!**/.wrangler",
"!**/.source"
]
},
"formatter": {

View File

@@ -0,0 +1,22 @@
{
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!**/.next",
"!**/dist",
"!**/.turbo",
"!**/dev-dist",
"!**/.zed",
"!**/.vscode",
"!**/routeTree.gen.ts",
"!**/src-tauri",
"!**/.nuxt",
"!bts.jsonc",
"!**/.expo",
"!**/.wrangler",
"!**/.source"
]
}
}

View File

@@ -58,7 +58,7 @@ export default function SignInForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -61,7 +61,7 @@ export default function SignUpForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -58,7 +58,7 @@ export default function SignInForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -61,7 +61,7 @@ export default function SignUpForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -62,7 +62,7 @@ export default function SignInForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -65,7 +65,7 @@ export default function SignUpForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -62,7 +62,7 @@ export default function SignInForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -65,7 +65,7 @@ export default function SignUpForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
className="space-y-4"
>

View File

@@ -53,7 +53,7 @@ export default function SignInForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
class="space-y-4"
>

View File

@@ -56,7 +56,7 @@ export default function SignUpForm({
onSubmit={(e) => {
e.preventDefault();
e.stopPropagation();
void form.handleSubmit();
form.handleSubmit();
}}
class="space-y-4"
>

View File

@@ -0,0 +1,2 @@
[install]
linker = "isolated"

View File

@@ -10,17 +10,6 @@
"start": "vite",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@tanstack/react-router-devtools": "^1.114.27",
"@tanstack/router-plugin": "^1.114.27",
"@types/node": "^22.13.13",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"postcss": "^8.5.3",
"tailwindcss": "^4.0.15",
"vite": "^6.2.2"
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"radix-ui": "^1.4.2",
@@ -37,5 +26,17 @@
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.2.5",
"zod": "^4.0.2"
},
"devDependencies": {
"@tanstack/react-router-devtools": "^1.114.27",
"@tanstack/router-plugin": "^1.114.27",
"@types/node": "^22.13.13",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"postcss": "^8.5.3",
"typescript": "^5.8.3",
"tailwindcss": "^4.0.15",
"vite": "^6.2.2"
}
}