diff options
author | Eduardo Julian | 2019-03-13 22:06:32 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-13 22:06:32 -0400 |
commit | d3522576c5de2028c18e700cd0796a8db3f4c52f (patch) | |
tree | bcb863b7f53765ba16b36f96ce827c0a8a0956fa /new-luxc | |
parent | 60f368ddd0cc9863fa9f59aa2362b9e3cb9e48a5 (diff) |
No longer needing "jvm" or "js" configurations in "project.clj" files for Lux projects.
Diffstat (limited to 'new-luxc')
-rw-r--r-- | new-luxc/project.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/project.clj b/new-luxc/project.clj index a6f3510f2..182673452 100644 --- a/new-luxc/project.clj +++ b/new-luxc/project.clj @@ -42,6 +42,6 @@ :source-paths ["source"] :test-paths ["test"] - :lux {:program {:jvm "program"} - :tests {:jvm "tests"}} + :lux {:program "program" + :test "tests"} ) |