forked from funcool/beicon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.clj
More file actions
83 lines (72 loc) · 2.48 KB
/
tools.clj
File metadata and controls
83 lines (72 loc) · 2.48 KB
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
81
82
83
(require '[clojure.java.shell :as shell])
(require '[figwheel.main.api :as figwheel])
(require '[cljs.build.api :as api])
(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)))
(def options
{:main 'beicon.tests.test-core
:output-to "out/tests.js"
:output-dir "out/tests"
:source-map "out/tests.js.map"
:language-in :ecmascript5
:language-out :ecmascript5
:target :nodejs
:optimizations :simple
:pretty-print true
:pseudo-names true
:verbose true})
(defmethod task "test"
[[_ type]]
(letfn [(build [optimizations]
(api/build (api/inputs "src" "test")
(cond-> (assoc options :optimizations optimizations)
(= optimizations :none) (assoc :source-map true))))
(run-tests []
(let [{:keys [out err]} (shell/sh "node" "out/tests.js")]
(println out err)
))
(test-once []
(build :none)
(run-tests)
(shutdown-agents))
(test-watch []
(println "Start watch loop...")
(try
(api/watch (api/inputs "src" "test")
(assoc options
:parallel-build false
:watch-fn run-tests
:cache-analysis false
:optimizations :none
:source-map false))
(catch Exception e
(println "ERROR:" e)
(Thread/sleep 2000)
(test-watch))))]
(case type
(nil "once") (test-once)
"watch" (test-watch)
"build-none" (build :none)
"build-simple" (build :simple)
"build-advanced" (build :advanced)
(do (println "Unknown argument to test task:" type)
(System/exit 1)))))
(defmethod task "figwheel"
[args]
(figwheel/start
{:id "dev"
:options {:main 'beicon.user
;; :output-to "out/tests.js"
;; :output-dir "out/tests"
;; :source-map true
:target :nodejs}
:config {:open-url false
:auto-testing false
:watch-dirs ["src" "test"]}}))
;;; Build script entrypoint. This should be the last expression.
(task *command-line-args*)