aboutsummaryrefslogtreecommitdiff
path: root/lux-lein/src/leiningen/lux.clj
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lux-lein/src/leiningen/lux.clj (renamed from lux-lein/src/leiningen/luxc.clj)16
1 files changed, 8 insertions, 8 deletions
diff --git a/lux-lein/src/leiningen/luxc.clj b/lux-lein/src/leiningen/lux.clj
index b04e4997a..6b2268d70 100644
--- a/lux-lein/src/leiningen/luxc.clj
+++ b/lux-lein/src/leiningen/lux.clj
@@ -3,18 +3,18 @@
;; If a copy of the MPL was not distributed with this file,
;; You can obtain one at http://mozilla.org/MPL/2.0/.
-(ns leiningen.luxc
+(ns leiningen.lux
(:require [leiningen.pom :as pom]
[leiningen.core.classpath :as classpath]
- (leiningen.luxc [compiler :as &compiler]
- [test :as &test]
- [repl :as &repl])))
+ (leiningen.lux [builder :as &builder]
+ [test :as &test]
+ [repl :as &repl])))
;; [Exports]
-(defn luxc [project & args]
+(defn lux [project & args]
(case (first args)
- "compile"
- (&compiler/compile project)
+ "build"
+ (&builder/build project)
"test"
(&test/test project)
@@ -23,5 +23,5 @@
(&repl/repl project)
;; default...
- (println "Commands available: compile, test, repl"))
+ (println "Commands available: build, test, repl"))
)