Configure Tailwind styling pipeline

This commit is contained in:
2026-08-05 12:52:06 +02:00
parent 4c0c53d6e9
commit e60522495a
7 changed files with 2033 additions and 855 deletions
+6 -2
View File
@@ -10,7 +10,9 @@
"catalog:dry-run": "node src/cli.js catalog-maker --dry-run",
"test": "node --test",
"test:ui": "playwright test",
"test:e2e": "playwright test tests/ui/database.e2e.spec.js"
"test:e2e": "playwright test tests/ui/database.e2e.spec.js",
"css:build": "tailwindcss -i ./src/tailwind.css -o ./public/styles.css --minify",
"build": "npm run css:build"
},
"engines": {
"node": ">=20"
@@ -21,6 +23,8 @@
"selenium-webdriver": "^4.46.0"
},
"devDependencies": {
"playwright": "^1.62.1"
"@tailwindcss/cli": "^4.3.3",
"playwright": "^1.62.1",
"tailwindcss": "^4.3.3"
}
}