Skip to content

Commit

Permalink
Remove deprecated TAILWIND_MODE
Browse files Browse the repository at this point in the history
Since Tailwind version 3.0.9 `TAILWIND_MODE` has been removed.

See: tailwindlabs/tailwindcss#6858
  • Loading branch information
jacobemcken committed Jan 12, 2023
1 parent d44a771 commit da33542
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -2,8 +2,8 @@
"scripts": {
"shadow:watch": "shadow-cljs watch app",
"shadow:release": "shadow-cljs release app",
"postcss:build": "cross-env TAILWIND_MODE=build postcss src/css/tailwind.css -o ./public/css/main.css --verbose",
"postcss:watch": "cross-env TAILWIND_MODE=watch postcss src/css/tailwind.css -o ./public/css/main.css --verbose -w",
"postcss:build": "postcss src/css/tailwind.css -o ./public/css/main.css --verbose",
"postcss:watch": "postcss src/css/tailwind.css -o ./public/css/main.css --verbose -w",
"postcss:release": "cross-env NODE_ENV=production postcss src/css/tailwind.css -o ./public/css/main.css --verbose",
"dev": "run-p -l *:watch",
"release": "run-s *:release"
Expand Down

0 comments on commit da33542

Please sign in to comment.