Skip to content

Commit

Permalink
Compile http-client and http-server with --optimize.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinheghan committed Dec 9, 2024
1 parent ac37043 commit 4546f80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion http-client/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
app: Makefile gren.json node_modules
GREN_BIN=../../compiler/gren node ../../compiler/cli.js make src/Main.gren --output=bin/app
GREN_BIN=../../compiler/gren node ../../compiler/cli.js make --optimize src/Main.gren --output=bin/app

.PHONY: test
test: app node_modules
Expand Down
2 changes: 1 addition & 1 deletion http-server/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
app: Makefile gren.json node_modules
GREN_BIN=../../compiler/gren node ../../compiler/cli.js make src/Main.gren --output=app
GREN_BIN=../../compiler/gren node ../../compiler/cli.js make --optimize src/Main.gren --output=app

.PHONY: serve
serve: app
Expand Down

0 comments on commit 4546f80

Please sign in to comment.