remove custom tailwind plugins and added a script to generate theme.css

This commit is contained in:
Somrat
2025-12-01 11:54:22 +06:00
parent cf6bcfee6c
commit c0a555a477
6 changed files with 246 additions and 269 deletions
+7 -5
View File
@@ -1,14 +1,14 @@
{
"name": "astroplate",
"version": "5.9.0",
"version": "5.10.0",
"description": "Astro and Tailwindcss boilerplate",
"author": "zeon.studio",
"license": "MIT",
"packageManager": "yarn@1.22.22",
"type": "module",
"scripts": {
"dev": "yarn generate-json && astro dev",
"build": "yarn generate-json && astro build",
"dev": "concurrently \"node scripts/themeGenerator.js --watch\" \"yarn generate-json && astro dev\"",
"build": "node scripts/themeGenerator.js && yarn generate-json && astro build",
"preview": "astro preview",
"check": "astro check",
"format": "prettier -w ./src",
@@ -37,7 +37,8 @@
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"swiper": "^12.0.3",
"vite": "^7.2.2"
"vite": "^7.2.2",
"sharp": "^0.34.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
@@ -46,11 +47,12 @@
"@types/node": "24.10.1",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.1",
"sharp": "0.34.5",
"tailwind-bootstrap-grid": "^6.0.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
}