Skip to content

Commit

Permalink
fix(login): improved type safety and validation in login form (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
Friskopp authored Dec 6, 2024
1 parent 980c5f8 commit 93950e1
Show file tree
Hide file tree
Showing 18 changed files with 772 additions and 138 deletions.
27 changes: 15 additions & 12 deletions components.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"$schema": "https://next.shadcn-svelte.com/schema.json",
"style": "default",
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app.css",
"baseColor": "gray"
},
"aliases": {
"components": "$lib/components",
"utils": "$lib/utils"
},
"typescript": true
"$schema": "https://next.shadcn-svelte.com/schema.json",
"style": "default",
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app.css",
"baseColor": "gray"
},
"aliases": {
"components": "$lib/components",
"utils": "$lib/utils",
"ui": "$lib/components/ui",
"hooks": "$lib/hooks"
},
"typescript": true,
"registry": "https://next.shadcn-svelte.com/registry"
}
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"@tauri-apps/plugin-notification": "~2",
"@tauri-apps/plugin-shell": "~2",
"@tauri-apps/plugin-updater": "~2",
"bits-ui": "1.0.0-next.45",
"clsx": "2.1.1",
"svelte": "^5.1.12",
"tailwind-merge": "2.5.3",
Expand All @@ -40,9 +39,11 @@
"@types/node": "22.9.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.20",
"bits-ui": "1.0.0-next.66",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "2.46.0",
"formsnap": "2.0.0-next.1",
"globals": "^15.12.0",
"lucide-svelte": "^0.452.0",
"postcss": "^8.4.47",
Expand All @@ -52,11 +53,13 @@
"svelte-check": "4.0.4",
"svelte-eslint-parser": "0.43.0",
"svelte-preprocess": "6.0.3",
"sveltekit-superforms": "^2.21.1",
"tailwindcss": "3.4.13",
"tslib": "2.7.0",
"typescript": "5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "5.4.8"
"vite": "5.4.8",
"zod": "^3.23.8"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}
Loading

0 comments on commit 93950e1

Please sign in to comment.