nodejs devs trying to resist including every popular lib impossible challenge
Some checks failed
/ deploy (push) Failing after 22s

This commit is contained in:
Minecon724 2024-05-12 18:09:56 +02:00
parent b0bd91d089
commit 579ae8d988
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -15,7 +15,7 @@ chdir('html')
for f in [i for i in listdir() if i.endswith('.html')]:
# 1. Minify the index.html file using minify-html
minified_content = minify_html.minify(open(f, 'r').read(), minify_css=True, minify_css_level_3=True, do_not_minify_doctype=True)
minified_content = minify_html.minify(open(f, 'r').read(), minify_css=True, minify_doctype=False)
# 2. Upload the file to an FTP server