Skip to content

Commit 6a3de0c

Browse files
committed
Update tailwind to v4 + bump deps
1 parent 92c57e6 commit 6a3de0c

File tree

10 files changed

+6086
-8760
lines changed

10 files changed

+6086
-8760
lines changed

.husky/commit-msg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npx --no -- commitlint --edit $1

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npx --no -- lint-staged

.husky/pre-push

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npm run test -- --run
52

63
echo "publint:"

.storybook/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Preview } from '@storybook/react';
22

3-
import './tailwind.css';
3+
import '../tailwind.css';
44

55
const preview: Preview = {
66
parameters: {

.storybook/tailwind.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

package-lock.json

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

package.json

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -40,41 +40,42 @@
4040
"react": ">=16.8.0"
4141
},
4242
"devDependencies": {
43-
"@commitlint/cli": "^19.3.0",
44-
"@rollup/plugin-typescript": "^11.1.6",
45-
"@storybook/addon-essentials": "^8.1.10",
46-
"@storybook/addon-interactions": "^8.1.10",
47-
"@storybook/addon-links": "^8.1.10",
48-
"@storybook/blocks": "^8.1.10",
49-
"@storybook/manager-api": "^8.1.10",
50-
"@storybook/react": "^8.1.10",
51-
"@storybook/react-vite": "^8.1.10",
52-
"@storybook/theming": "^8.1.10",
53-
"@tailwindcss/forms": "^0.5.7",
54-
"@testing-library/react": "^16.0.0",
55-
"@vitejs/plugin-react": "^4.3.1",
56-
"@vitest/coverage-v8": "^1.6.0",
57-
"autoprefixer": "^10.4.19",
43+
"@commitlint/cli": "^19.7.1",
44+
"@rollup/plugin-typescript": "^12.1.2",
45+
"@storybook/addon-essentials": "^8.5.3",
46+
"@storybook/addon-interactions": "^8.5.3",
47+
"@storybook/addon-links": "^8.5.3",
48+
"@storybook/blocks": "^8.5.3",
49+
"@storybook/manager-api": "^8.5.3",
50+
"@storybook/react": "^8.5.3",
51+
"@storybook/react-vite": "^8.5.3",
52+
"@storybook/theming": "^8.5.3",
53+
"@tailwindcss/forms": "^0.5.10",
54+
"@tailwindcss/postcss": "^4.0.3",
55+
"@testing-library/react": "^16.2.0",
56+
"@vitejs/plugin-react": "^4.3.4",
57+
"@vitest/coverage-v8": "^3.0.5",
5858
"commitlint-config-non-conventional": "^1.0.1",
59-
"eslint": "^8.57.0",
59+
"eslint": "^8.57.1",
6060
"eslint-config-pegasus": "^5.0.0",
6161
"eslint-config-prettier": "^9.1.0",
6262
"eslint-plugin-storybook": "^0.8.0",
63-
"happy-dom": "^15.10.1",
64-
"husky": "^9.0.11",
65-
"is-ci": "^3.0.1",
66-
"lint-staged": "^15.2.7",
67-
"postcss": "^8.4.38",
63+
"happy-dom": "^16.8.1",
64+
"husky": "^9.1.7",
65+
"is-ci": "^4.1.0",
66+
"lint-staged": "^15.4.3",
67+
"postcss": "^8.5.1",
6868
"postcss-loader": "^8.1.1",
69-
"publint": "^0.2.8",
70-
"react": "^18.3.1",
71-
"react-dom": "^18.3.1",
72-
"rollup": "^4.18.0",
73-
"storybook": "^8.1.10",
74-
"tailwindcss": "^3.4.4",
75-
"typescript": "^5.5.2",
76-
"vite": "^5.3.1",
77-
"vite-plugin-svgr": "^4.2.0",
78-
"vitest": "^1.6.0"
69+
"prettier": "^3.4.2",
70+
"publint": "^0.2.12",
71+
"react": "^19.0.0",
72+
"react-dom": "^19.0.0",
73+
"rollup": "^4.34.2",
74+
"storybook": "^8.5.3",
75+
"tailwindcss": "^4.0.3",
76+
"typescript": "^5.7.3",
77+
"vite": "^6.0.11",
78+
"vite-plugin-svgr": "^4.3.0",
79+
"vitest": "^3.0.5"
7980
}
8081
}

postcss.config.cjs

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
};

tailwind.config.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

tailwind.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@import "tailwindcss";
2+
3+
@plugin '@tailwindcss/forms';

0 commit comments

Comments
 (0)