1
Fork 0

Update dependencies.

This commit is contained in:
Bauke 2024-01-15 16:31:42 +01:00
parent 0a646f0763
commit 2352cb5a61
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
3 changed files with 14 additions and 10 deletions

View File

@ -14,10 +14,10 @@ name = "bauke-xyz"
path = "source/main.rs" path = "source/main.rs"
[dependencies] [dependencies]
askama = "0.11.1" askama = "0.12.1"
color-eyre = "0.6.2" color-eyre = "0.6.2"
comrak = "0.15.0" comrak = "0.20.0"
minify-html = "0.10.7" minify-html = "0.15.0"
rsass = "0.23.4" rsass = "0.23.4"
toml-frontmatter = "0.1.0" toml-frontmatter = "0.1.0"

View File

@ -1,15 +1,15 @@
{ {
"private": "true", "private": "true",
"dependencies": { "dependencies": {
"modern-normalize": "^1.1.0" "modern-normalize": "^2.0.0"
}, },
"devDependencies": { "devDependencies": {
"@bauke/eslint-config": "^0.1.2", "@bauke/eslint-config": "^0.1.5",
"@bauke/prettier-config": "^0.1.2", "@bauke/prettier-config": "^0.1.5",
"@bauke/stylelint-config": "^0.1.2", "@bauke/stylelint-config": "^0.1.5",
"netlify-cli": "^12.5.0", "netlify-cli": "^17.13.2",
"stylelint": "^14.16.1", "stylelint": "^16.1.0",
"xo": "^0.53.1" "xo": "^0.56.0"
}, },
"prettier": "@bauke/prettier-config", "prettier": "@bauke/prettier-config",
"stylelint": { "stylelint": {

View File

@ -10,9 +10,13 @@ pub fn html(data: String) -> Result<String> {
keep_closing_tags: true, keep_closing_tags: true,
keep_comments: false, keep_comments: false,
keep_html_and_head_opening_tags: true, keep_html_and_head_opening_tags: true,
keep_input_type_text_attr: true,
keep_spaces_between_attributes: true, keep_spaces_between_attributes: true,
keep_ssi_comments: false,
minify_css: false, minify_css: false,
minify_js: false, minify_js: false,
preserve_brace_template_syntax: false,
preserve_chevron_percent_template_syntax: false,
remove_bangs: false, remove_bangs: false,
remove_processing_instructions: false, remove_processing_instructions: false,
}; };