Skip to content

Commit

Permalink
Don't compile libs in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed May 12, 2019
1 parent 6d3906e commit 3cf8285
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions gleam_stdlib/rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@

{profiles, [
{test, [
{src_dirs, ["src", "gen/src", "gen/test"]}
{pre_hooks, [{compile, "gleam build ."}]},
{src_dirs, ["src", "test", "gen/src", "gen/test"]}
]},

{dev, [
{pre_hooks, [{compile, "gleam build ."}]}
]}
]}.

{pre_hooks, [{compile, "gleam build ."}]}.

{deps, []}.

0 comments on commit 3cf8285

Please sign in to comment.