Change compress tooling to avoid svg tag scrambling

This commit is contained in:
ksamuel 2020-08-18 14:38:31 +02:00
parent eb5ecdb04e
commit fab8f31064
4 changed files with 30 additions and 66 deletions

21
.gitignore vendored
View File

@ -7,8 +7,7 @@
*_index
*.orig
*.swp
.* # all hidden files...
!.gitignore # ...except gitignore
# binaries
@ -19,8 +18,12 @@ __pycache__
*.db
# files generated by setuptools
# build and env
build
0bin
env
venv
*.egg-info
dist
*.tar.gz
@ -28,14 +31,14 @@ dist
*.in
# others
# IDE
content
*.sublime-project
*-workspace
*_old*
settings_local.py
build
.vscode
var
0bin
# JS
package-lock.json
node_modules

View File

@ -1,22 +1,20 @@
#! /bin/bash
command -v "yui-compressor" >/dev/null 2>&1 || {
echo >&2 "Error: this script requires the command 'yui-compressor' to be available"
python -c "import scss" || {
echo >&2 "Error: this script requires the scss python module. pip install -r dev-requirements.txt"
exit 1
}
command -v "uglifyjs" >/dev/null 2>&1 || {
echo >&2 "Error: this script requires the command 'uglifyjs' to be available"
echo >&2 "Error: this script requires the command 'uglifyjs' to be available."
exit 1
}
CURDIR=$(dirname $(readlink -f $0))
STATICDIR=$CURDIR'/zerobin/static/'
CSSDIR=$STATICDIR'css/'
JSDIR=$STATICDIR'js/'
CSSDIR=$CURDIR'/zerobin/static/css/'
JSDIR=$CURDIR'/zerobin/static/js/'
MAIN_JS_OUTPUT=$JSDIR"main.min.js"
ADDITIONAL_JS_OUTPUT=$JSDIR"additional.min.js"
CSS_OUTPUT=$CSSDIR"style.min.css"
cat /dev/null >$CSS_OUTPUT
@ -24,16 +22,19 @@ cat /dev/null >$CSS_OUTPUT
echo "Compressing CSS..."
echo $'\n''/* Prettify */' >>$CSS_OUTPUT
cat $CSSDIR'prettify.css' >>$CSS_OUTPUT
python -m scss $CSSDIR'prettify.css' >>$CSS_OUTPUT
rm $CSSDIR'prettify.min.css'
echo $'\n''/* Desert prettify theme */' >>$CSS_OUTPUT
cat $CSSDIR'desert.css' >>$CSS_OUTPUT
python -m scss $CSSDIR'desert.css' >>$CSS_OUTPUT
rm $CSSDIR'desert.min.css'
echo $'\n''/* Bootswatch bootstrap theme */' >>$CSS_OUTPUT
yui-compressor $CSSDIR'bootswatch.4.5.css' >>$CSS_OUTPUT
python -m scss $CSSDIR'bootswatch.4.5.css' >>$CSS_OUTPUT
rm $CSSDIR'bootswatch.4.5.min.css'
echo $'\n''/* Our own CSS */' >>$CSS_OUTPUT
yui-compressor $CSSDIR'style.css' >>$CSS_OUTPUT
python -m scss $CSSDIR'style.css' >>$CSS_OUTPUT
echo "Compressing JS..."

View File

@ -1 +1,2 @@
doit==0.32.0
pyScss==1.3.7

File diff suppressed because one or more lines are too long