remove broken minify for now
parent
d22cc2e58a
commit
96e6c7eb53
11
Makefile
11
Makefile
|
@ -1,8 +1,8 @@
|
|||
.PHONY: build minify clean release deploy_test
|
||||
.PHONY: build clean release deploy_test
|
||||
|
||||
BASEURL ?= https://c3re.de
|
||||
|
||||
release: build minify
|
||||
release: build
|
||||
|
||||
build: clean
|
||||
hugo --gc --minify --cleanDestinationDir -b "${BASEURL}" --enableGitInfo --panicOnWarning
|
||||
|
@ -10,15 +10,10 @@ build: clean
|
|||
clean:
|
||||
rm -rf public dist
|
||||
|
||||
minify: dist build
|
||||
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
|
||||
mv dist/public/* dist/
|
||||
rm -rf dist/public
|
||||
|
||||
dist:
|
||||
mkdir dist
|
||||
|
||||
deploy_test:
|
||||
$(MAKE) BASEURL=https://c3retest.shnbk.de release
|
||||
rsync -rv --delete dist/* shnbk.de:domains/c3retest.shnbk.de/htdocs
|
||||
rsync -rv --delete public/* shnbk.de:domains/c3retest.shnbk.de/htdocs
|
Loading…
Reference in New Issue