make minifier more kompatible, make automated dev-build

master
Dirk Heilig 2024-01-18 18:09:45 +01:00
parent de88fa320c
commit 999a20534d
1 changed files with 5 additions and 3 deletions

View File

@ -1,16 +1,17 @@
.PHONY: build minify clean release deploy_test .PHONY: build minify clean release deploy_test
BASEURL ?= https://c3re.de
release: build minify release: build minify
build: clean build: clean
hugo --gc --minify --cleanDestinationDir hugo --gc --minify --cleanDestinationDir -b "${BASEURL}" --enableGitInfo --panicOnWarning
clean: clean:
rm -rf public dist rm -rf public dist
minify: dist build minify: dist build
minify -a -r -o dist/ public/. -q --exclude "public/js/jquery-3.7.1.min.js" minify -a -r -o dist/ public/. -q --exclude "public/js/jquery-3.7.1.min.js" --html-keep-document-tags
cp -rp public/js/jquery-3.7.1.min.js dist/public/js/jquery-3.7.1.min.js cp -rp public/js/jquery-3.7.1.min.js dist/public/js/jquery-3.7.1.min.js
mv dist/public/* dist/ mv dist/public/* dist/
rm -rf dist/public rm -rf dist/public
@ -18,5 +19,6 @@ minify: dist build
dist: dist:
mkdir dist mkdir dist
deploy_test: release deploy_test:
make BASEURL=https://c3retest.shnbk.de release
rsync -rv --delete dist/* shnbk.de:domains/c3retest.shnbk.de/htdocs rsync -rv --delete dist/* shnbk.de:domains/c3retest.shnbk.de/htdocs