Compile sass for theme

This commit is contained in:
kbe
2025-08-19 09:01:27 +02:00
parent c7fafad8d4
commit 17fb355560
51 changed files with 1855 additions and 15021 deletions

View File

@@ -6,12 +6,16 @@
"fetch-data": "node scripts/fetch-wordpress.js",
"generate-content": "node scripts/generate-content.js",
"prebuild": "npm run fetch-data && npm run generate-content",
"build": "hugo --minify",
"dev": "npm run fetch-data && npm run generate-content && hugo server -D",
"build": "npm run build:css && hugo --minify",
"build:css": "sass assets/css/scss:static/assets/css",
"dev": "npm run fetch-data && npm run generate-content && npm run build:css && hugo server -D",
"clean": "rm -rf data/wordpress content/posts public"
},
"dependencies": {
"he": "^1.2.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"sass": "^1.69.5"
}
}