-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
tools.clj
80 lines (71 loc) · 2.48 KB
/
tools.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
(require '[clojure.java.shell :as shell])
(require '[rebel-readline.core]
'[rebel-readline.clojure.main]
'[rebel-readline.clojure.line-reader]
'[rebel-readline.clojure.service.local]
'[rebel-readline.cljs.service.local]
'[rebel-readline.cljs.repl])
(require '[cljs.build.api :as api]
'[cljs.repl :as repl]
'[cljs.repl.node :as node])
(defmulti task first)
(defmethod task :default
[args]
(let [all-tasks (-> task methods (dissoc :default) keys sort)
interposed (->> all-tasks (interpose ", ") (apply str))]
(println "Unknown or missing task. Choose one of:" interposed)
(System/exit 1)))
(defmethod task "repl:jvm"
[args]
(rebel-readline.core/with-line-reader
(rebel-readline.clojure.line-reader/create
(rebel-readline.clojure.service.local/create))
(clojure.main/repl
:prompt (fn []) ;; prompt is handled by line-reader
:read (rebel-readline.clojure.main/create-repl-read))))
(defmethod task "repl:node"
[args]
(rebel-readline.core/with-line-reader
(rebel-readline.clojure.line-reader/create
(rebel-readline.cljs.service.local/create))
(cljs.repl/repl
(node/repl-env)
:prompt (fn []) ;; prompt is handled by line-reader
:read (rebel-readline.cljs.repl/create-repl-read)
:output-dir "out"
:cache-analysis false)))
(def build-options
{:main 'beicon.tests.main
:output-to "out/tests.js"
:output-dir "out/tests"
:source-map "out/tests.js.map"
:language-in :ecmascript6
:language-out :no-transpile
:target :nodejs
:optimizations :advanced
:pretty-print true
:pseudo-names true
:verbose true})
(defmethod task "build:tests"
[args]
(api/build (api/inputs "src" "test") build-options))
(defmethod task "watch:tests"
[args]
(println "Start watch loop...")
(letfn [(run-tests []
(let [{:keys [out err]} (shell/sh "node" "out/tests.js")]
(println out err)))
(start-watch []
(try
(api/watch (api/inputs "src" "test")
(assoc build-options
:watch-fn run-tests
:source-map true
:optimizations :none))
(catch Exception e
(println "ERROR:" e)
(Thread/sleep 2000)
start-watch)))]
(trampoline start-watch)))
;;; Build script entrypoint. This should be the last expression.
(task *command-line-args*)