aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2019-03-13 22:06:32 -0400
committerEduardo Julian2019-03-13 22:06:32 -0400
commitd3522576c5de2028c18e700cd0796a8db3f4c52f (patch)
treebcb863b7f53765ba16b36f96ce827c0a8a0956fa /new-luxc/project.clj
parent60f368ddd0cc9863fa9f59aa2362b9e3cb9e48a5 (diff)
No longer needing "jvm" or "js" configurations in "project.clj" files for Lux projects.
Diffstat (limited to '')
-rw-r--r--new-luxc/project.clj4
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"}
)