Skip to content

Commit d70211d

Browse files
committed
update dependencies
1 parent 166ff48 commit d70211d

File tree

6 files changed

+392
-372
lines changed

6 files changed

+392
-372
lines changed

biome.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
"enabled": true,
55
"indentStyle": "space"
66
},
7+
"css": {
8+
"parser": {
9+
"tailwindDirectives": true
10+
}
11+
},
712
"linter": {
813
"enabled": true,
914
"rules": {

pnpm-lock.yaml

Lines changed: 381 additions & 366 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

storybook/.storybook/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { themes } from "storybook/theming";
2-
import "tailwindcss/tailwind.css";
2+
import "../styles.css";
33

44
export const parameters = {
55
controls: {

storybook/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@
1515
},
1616
"license": "MIT",
1717
"dependencies": {
18-
"framer-motion": "^11.15.0",
18+
"@tailwindcss/postcss": "^4.1.16",
19+
"framer-motion": "^12.23.24",
1920
"react": "^19.2.0",
2021
"react-dom": "^19.2.0",
2122
"react-intersection-observer": "workspace:*",
22-
"tailwindcss": "^3.4.17"
23+
"tailwindcss": "^4.1.16"
2324
},
2425
"devDependencies": {
2526
"@biomejs/biome": "^2.3.1",
@@ -32,7 +33,6 @@
3233
"@types/react": "^19.2.2",
3334
"@types/react-dom": "^19.2.2",
3435
"@vitejs/plugin-react": "^5.1.0",
35-
"autoprefixer": "^10.4.21",
3636
"postcss": "^8.5.6",
3737
"storybook": "9.1.15",
3838
"typescript": "^5.9.3",

storybook/postcss.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module.exports = {
22
plugins: {
3-
tailwindcss: {},
4-
autoprefixer: {},
3+
"@tailwindcss/postcss": {},
54
},
65
};

storybook/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "tailwindcss";

0 commit comments

Comments
 (0)