Previously, the assets/css/tailwind.css had no effect. I guess previously, it didn't matter, but now that radio-small-cards relies on assets/css/tailwind.css, we need to use it so the CSS includes the custom Tailwind components.
20 lines
583 B
JSON
20 lines
583 B
JSON
{
|
|
"devDependencies": {
|
|
"@redocly/cli": "^1.25.15",
|
|
"@stoplight/spectral-cli": "^6.14.2",
|
|
"openapi-format": "^1.24.2",
|
|
"@tailwindcss/forms": "^0.5.9",
|
|
"@tailwindcss/typography": "^0.5.15",
|
|
"tailwindcss": "^3.4.15"
|
|
},
|
|
"scripts": {
|
|
"dev": "npx tailwindcss -o assets/css/app.css -i assets/css/tailwind.css",
|
|
"prod": "npx tailwindcss -o assets/css/app.css -i assets/css/tailwind.css --minify",
|
|
"watch": "npx tailwindcss -o assets/css/app.css -i assets/css/tailwind.css --watch"
|
|
},
|
|
"engines": {
|
|
"node": "23.2.0",
|
|
"npm": "10.9.0"
|
|
}
|
|
}
|