postcss and scripts

This commit is contained in:
Per Stark
2024-12-30 12:13:36 +01:00
parent 69596e8c5d
commit 981da5a649
6 changed files with 4716 additions and 2153 deletions

View File

@@ -1,5 +1,18 @@
{
"scripts": {
"build:css": "postcss assets/input.css -o assets/style.css",
"watch:css": "postcss assets/input.css -o assets/style.css --watch",
"build:tailwind": "tailwindcss --input assets/input.css --output assets/style.css",
"watch:tailwind": "tailwindcss --input assets/input.css --output assets/style.css --watch",
"dev": "npm-run-all --parallel watch:css watch:tailwind"
},
"devDependencies": {
"daisyui": "^4.12.20"
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"daisyui": "^4.12.23",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.17"
}
}