updated build
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Samuel Philipp 2023-01-10 18:59:35 +01:00
parent 1ee83916b9
commit 37efcb2075
3 changed files with 13 additions and 13 deletions

View file

@ -3,10 +3,12 @@
"version": "1.0.0",
"description": "Website for samuel-philipp.de",
"scripts": {
"minify-css": "uncss -n -H dist/en/ -o dist/en/css/main-*.css dist/en/index.html",
"minify-css:de": "uncss -n -H dist/de/ -o dist/de/css/main-*.css dist/de/index.html",
"start": "eleventy --serve --watch",
"start:de": "LANGUAGE=de eleventy --serve --watch",
"build": "npm run compile-sass && eleventy && npm run minify-css && node .compress-all.js",
"build:de": "npm run compile-sass && eleventy && npm run minify-css && node .compress-all.js --lang de"
"build": "eleventy && npm run minify-css",
"build:de": "LANGUAGE=de eleventy && npm run minify-css"
},
"author": "samuel-p",
"repository": {
@ -22,18 +24,17 @@
"@node-minify/core": "^7.1.0",
"@node-minify/crass": "^7.1.0",
"@node-minify/html-minifier": "^7.1.0",
"@sardine/eleventy-plugin-tinycss": "^2.0.0",
"@sardine/eleventy-plugin-tinyhtml": "^0.2.0",
"cpx": "^1.5.0",
"eleventy-plugin-rev": "^1.0.2",
"eleventy-sass": "^2.1.6",
"glob": "^8.0.3",
"minify": "^9.1.0",
"node-sass": "^8.0.0",
"node-sass-tilde-importer": "^1.0.2",
"postcss": "^8.4.21",
"sass": "^1.57.1"
"sass": "^1.57.1",
"uncss": "^0.17.3"
},
"dependencies": {
"@sardine/eleventy-plugin-tinyhtml": "^0.2.0",
"bootstrap": "^5.2.3"
}
}