mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
Reduce zopfli level, switch from jq to jaq
jaq is faster and more strict which is exactly what I want. zopfli level 9 is overkill and takes almost twice as long for barely any difference.
This commit is contained in:
parent
64914b284c
commit
838d73ed22
2 changed files with 9 additions and 17 deletions
24
Makefile
24
Makefile
|
@ -16,8 +16,9 @@ OUTPUT_DIR = public
|
||||||
SSHFLAGS = -o KexAlgorithms=sntrup761x25519-sha512@openssh.com
|
SSHFLAGS = -o KexAlgorithms=sntrup761x25519-sha512@openssh.com
|
||||||
RSYNCFLAGS += -rlpcv --zc=zstd --zl=6 --skip-compress=gz/br/zst/png/webp/jpg/avif/jxl/mp4/mkv/webm/opus/mp3/gif/ico -e "ssh $(SSHFLAGS)" --chmod=D755,F644
|
RSYNCFLAGS += -rlpcv --zc=zstd --zl=6 --skip-compress=gz/br/zst/png/webp/jpg/avif/jxl/mp4/mkv/webm/opus/mp3/gif/ico -e "ssh $(SSHFLAGS)" --chmod=D755,F644
|
||||||
RSYNCFLAGS_EXTRA ?=
|
RSYNCFLAGS_EXTRA ?=
|
||||||
# compression gets slow for extreme levels like the old "70109"
|
# compression gets slow for extreme levels like the old "70109".
|
||||||
ECT_LEVEL=9
|
# Diminishing returns after level 6; sometimes even larger files.
|
||||||
|
ECT_LEVEL=6
|
||||||
|
|
||||||
csv/webrings.csv:
|
csv/webrings.csv:
|
||||||
sh scripts/populate-webrings.sh
|
sh scripts/populate-webrings.sh
|
||||||
|
@ -31,14 +32,14 @@ hugo: csv/webrings.csv $(SRCFILES)
|
||||||
# .hintrc-local for linting local files
|
# .hintrc-local for linting local files
|
||||||
# same as regular .hintrc but with a different connector.
|
# same as regular .hintrc but with a different connector.
|
||||||
.hintrc-local: .hintrc
|
.hintrc-local: .hintrc
|
||||||
jq --tab '.connector .name = "local" | del(.connector .options)' <linter-configs/hintrc >.hintrc-local
|
jaq --tab '.connector .name = "local" | del(.connector .options)' <linter-configs/hintrc >.hintrc-local
|
||||||
|
|
||||||
.hintrc-devserver: .hintrc
|
.hintrc-devserver: .hintrc
|
||||||
jq --tab '.extends = ["development"] | .hints["http-compression","https-only","ssllabs","sri"] = "off"' <linter-configs/hintrc >.hintrc-devserver
|
jaq --tab '.extends = ["development"] | .hints["http-compression","https-only","ssllabs","sri"] = "off"' <linter-configs/hintrc >.hintrc-devserver
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(OUTPUT_DIR) .lighthouseci lighthouse-reports mentions.json data/webmentions.json
|
rm -rf $(OUTPUT_DIR) .lighthouseci lighthouse-reports
|
||||||
|
|
||||||
.PHONY: lint-css
|
.PHONY: lint-css
|
||||||
lint-css: $(CSS_DIR)/*.css
|
lint-css: $(CSS_DIR)/*.css
|
||||||
|
@ -56,8 +57,8 @@ equal-access:
|
||||||
|
|
||||||
.PHONY: validate-json
|
.PHONY: validate-json
|
||||||
validate-json:
|
validate-json:
|
||||||
jq -reM '""' $(OUTPUT_DIR)/manifest.min.*.webmanifest 1>/dev/null
|
jaq -re '""' $(OUTPUT_DIR)/manifest.min.*.webmanifest 1>/dev/null
|
||||||
jq -reM '""' $(OUTPUT_DIR)/webfinger.json 1>/dev/null
|
jaq -re '""' $(OUTPUT_DIR)/webfinger.json 1>/dev/null
|
||||||
|
|
||||||
.PHONY: validate-html
|
.PHONY: validate-html
|
||||||
validate-html:
|
validate-html:
|
||||||
|
@ -117,15 +118,6 @@ xhtmlize:
|
||||||
copy-to-xhtml:
|
copy-to-xhtml:
|
||||||
find $(OUTPUT_DIR) -type f -name "*.html" -exec sh scripts/copy-file-to-xhtml.sh {} \;
|
find $(OUTPUT_DIR) -type f -name "*.html" -exec sh scripts/copy-file-to-xhtml.sh {} \;
|
||||||
|
|
||||||
# save webmentions to a file, don't send yet
|
|
||||||
mentions.json: hugo
|
|
||||||
# gather old version of the site
|
|
||||||
# rsync $(RSYNCFLAGS) --exclude '*.gz' --exclude '*.br' --exclude '*.png' --exclude-from .rsyncignore $(WWW_RSYNC_DEST)/ old
|
|
||||||
static-webmentions -f mentions.json.unfiltered find
|
|
||||||
# filter the webmentions a bit; jq offers more flexibility than config.toml
|
|
||||||
jq '[ .[] | select(.Dest|test("https://(git.sr.ht/~seirdy/seirdy.one/log/master|seirdy.one|web.archive.org|archive.is|en.wikipedia.org|matrix.to|([a-z]*.)?reddit.com|github.com)") | not) ]' <mentions.json.unfiltered >mentions.json
|
|
||||||
rm mentions.json.unfiltered
|
|
||||||
|
|
||||||
.PHONY: deploy-html
|
.PHONY: deploy-html
|
||||||
deploy-html:
|
deploy-html:
|
||||||
rsync $(RSYNCFLAGS) $(RSYNCFLAGS_EXTRA) --exclude 'gemini' --exclude '*.gmi' --exclude-from .rsyncignore $(OUTPUT_DIR)/ $(WWW_RSYNC_DEST) --delete
|
rsync $(RSYNCFLAGS) $(RSYNCFLAGS_EXTRA) --exclude 'gemini' --exclude '*.gmi' --exclude-from .rsyncignore $(OUTPUT_DIR)/ $(WWW_RSYNC_DEST) --delete
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
set -e -u
|
set -e -u
|
||||||
|
|
||||||
root_dir="$(dirname "$0")/.."
|
root_dir="$(dirname "$0")/.."
|
||||||
vnu_output="$(jq --from-file "$root_dir/linter-configs/vnu_filter.jq")"
|
vnu_output="$(jaq --from-file "$root_dir/linter-configs/vnu_filter.jq")"
|
||||||
if [ "$vnu_output" = '' ]; then
|
if [ "$vnu_output" = '' ]; then
|
||||||
echo "All markup is valid"
|
echo "All markup is valid"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue