feat: add tailwindcss-motion plugin and update package dependencies

This commit is contained in:
Norbert Maciaszek
2025-11-21 01:18:02 +01:00
parent a0eb060257
commit f9ef3e8248
3 changed files with 13 additions and 0 deletions

11
package-lock.json generated
View File

@@ -21,6 +21,7 @@
"svelte": "^5.41.0", "svelte": "^5.41.0",
"svelte-check": "^4.3.3", "svelte-check": "^4.3.3",
"tailwindcss": "^4.1.14", "tailwindcss": "^4.1.14",
"tailwindcss-motion": "^1.1.1",
"typescript": "^5.9.3", "typescript": "^5.9.3",
"vite": "^7.1.10" "vite": "^7.1.10"
} }
@@ -2343,6 +2344,16 @@
"dev": true, "dev": true,
"license": "MIT" "license": "MIT"
}, },
"node_modules/tailwindcss-motion": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/tailwindcss-motion/-/tailwindcss-motion-1.1.1.tgz",
"integrity": "sha512-CeeQAc5o31BuEPMyWdq/786X7QWNeifa+8khfu74Fs8lGkgEwjNYv6dGv+lRFS8FWXV5dp7F3AU9JjBXjiaQfw==",
"dev": true,
"license": "MIT",
"peerDependencies": {
"tailwindcss": ">=3.0.0 || insiders"
}
},
"node_modules/tapable": { "node_modules/tapable": {
"version": "2.3.0", "version": "2.3.0",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",

View File

@@ -24,6 +24,7 @@
"svelte": "^5.41.0", "svelte": "^5.41.0",
"svelte-check": "^4.3.3", "svelte-check": "^4.3.3",
"tailwindcss": "^4.1.14", "tailwindcss": "^4.1.14",
"tailwindcss-motion": "^1.1.1",
"typescript": "^5.9.3", "typescript": "^5.9.3",
"vite": "^7.1.10" "vite": "^7.1.10"
}, },

View File

@@ -1,4 +1,5 @@
@import 'tailwindcss'; @import 'tailwindcss';
@plugin 'tailwindcss-motion';
body { body {
@apply bg-gray-50 font-sans text-gray-800 antialiased; @apply bg-gray-50 font-sans text-gray-800 antialiased;