Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: chore(deps): update dependency tailwindcss to v4 - abandoned #346

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"devDependencies": {
"@percy/cli": "^1.30.5",
"@percy/cypress": "^3.1.3",
"@tailwindcss/vite": "^4.0.1",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/throttle-debounce": "^5.0.0",
Expand All @@ -55,7 +56,7 @@
"less": "^4.1.3",
"postcss": "^8.4.16",
"start-server-and-test": "^2.0.4",
"tailwindcss": "^3.1.8",
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.3",
"vite-plugin-mkcert": "^1.17.6",
Expand Down
6 changes: 0 additions & 6 deletions demo/postcss.config.js

This file was deleted.

4 changes: 1 addition & 3 deletions demo/src/styles/base.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import 'tailwindcss';

:root {
--demo-header-height: 52px;
Expand Down
2 changes: 2 additions & 0 deletions demo/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import reactRefresh from '@vitejs/plugin-react-refresh'
import tsconfigPaths from 'vite-tsconfig-paths'
import { VitePWA } from 'vite-plugin-pwa'
import ViteMkcert from 'vite-plugin-mkcert'
import tailwindcss from '@tailwindcss/vite'

const BASE = '/demo/'

Expand Down Expand Up @@ -44,6 +45,7 @@ export default defineConfig({
savePath: './certs', // save the generated certificate into certs directory
})
: null,
tailwindcss(),
],
base: BASE,
mode,
Expand Down
Loading
Loading