Skip to content

Commit

Permalink
chore: remove --minify
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Apr 24, 2020
1 parent 97bb014 commit 85ae973
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ bumphugo:

.PHONY: build
build:
$(eval opt := --gc --minify --themesDir ../../ --baseURL $(BASE_URL))
$(eval opt := --gc --themesDir ../../ --baseURL $(BASE_URL))
$(DOCKER_COMPOSE) run --rm hugo $(opt)

.PHONY: test
test:
$(eval opt := --gc --minify --themesDir ../../ --baseURL $(BASE_URL) --renderToMemory)
$(eval opt := --gc --themesDir ../../ --baseURL $(BASE_URL) --renderToMemory)
$(DOCKER_COMPOSE) run --rm hugo $(opt)

.PHONY: buildgha
buildgha:
cd ./exampleSite && \
hugo --gc --minify --themesDir ../../ --baseURL $(BASE_URL)
hugo --gc --themesDir ../../ --baseURL $(BASE_URL)

0 comments on commit 85ae973

Please sign in to comment.