Skip to content

Commit

Permalink
Drop console.log() with uglifyjs
Browse files Browse the repository at this point in the history
  • Loading branch information
gvalkov committed Feb 7, 2019
1 parent 67537ec commit 89380bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/Makefile
Expand Up @@ -53,7 +53,7 @@ $(DISTDIR)/3rdparty.js: $(EXTERNAL_JS)
$(CMD_UGLIFY) $(EXTERNAL_JS) > $@

$(DISTDIR)/main.js: $(INTERNAL_JS)
$(CMD_UGLIFY) $(INTERNAL_JS) > $@
$(CMD_UGLIFY) -c drop_console=true $(INTERNAL_JS) > $@

$(DISTDIR)/main.css: $(INTERNAL_CSS)
$(CMD_NODESASS) --quiet --output-style compressed scss/main.scss > $@
Expand Down

0 comments on commit 89380bf

Please sign in to comment.