|
1 | 1 | (set-env!
|
2 | 2 | :source-paths #{"lib/src"}
|
3 |
| - :dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"] |
4 |
| - [org.clojure/clojurescript "1.9.293" :scope "provided"] |
5 |
| - [adzerk/env "0.4.0" :scope "test"] |
6 |
| - [adzerk/boot-cljs "1.7.228-2" :scope "test"] |
7 |
| - [adzerk/boot-test "1.1.2" :scope "test"] |
8 |
| - [adzerk/boot-reload "0.4.13" :scope "test"] |
9 |
| - [adzerk/bootlaces "0.1.13" :scope "test"] |
10 |
| - [org.seleniumhq.selenium/selenium-java "3.0.1" :scope "test"] |
11 |
| - [tailrecursion/boot-static "0.1.0" :scope "test"] |
12 |
| - [hoplon/hoplon "6.0.0-alpha17"] |
13 |
| - [hoplon/javelin "3.9.0"] |
14 |
| - [cljsjs/markdown "0.6.0-beta1-0"]]) |
| 3 | + :dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"] |
| 4 | + [org.clojure/clojurescript "1.9.293" :scope "provided"] |
| 5 | + [adzerk/env "0.4.0" :scope "test"] |
| 6 | + [adzerk/boot-cljs "1.7.228-2" :scope "test"] |
| 7 | + [adzerk/boot-test "1.1.2" :scope "test"] |
| 8 | + [adzerk/boot-reload "0.4.13" :scope "test"] |
| 9 | + [adzerk/bootlaces "0.1.13" :scope "test"] |
| 10 | + [org.seleniumhq.selenium/selenium-support "3.0.1" :scope "test"] |
| 11 | + [tailrecursion/boot-static "0.1.0" :scope "test"] |
| 12 | + [hoplon/hoplon "6.0.0-alpha17"] |
| 13 | + [hoplon/javelin "3.9.0"] |
| 14 | + [cljsjs/markdown "0.6.0-beta1-0"]]) |
15 | 15 |
|
16 | 16 | (require
|
17 | 17 | '[adzerk.bootlaces :refer :all]
|
|
68 | 68 | (let [o (or optimizations :none)
|
69 | 69 | c {:elide-asserts no-validate}]
|
70 | 70 | (set-env! :source-paths #{"lib/src" "app/src"} :resource-paths #{"tst/src" "app/rsc"})
|
71 |
| - (comp (init) (connect) (watch) (speak) (hoplon) (reload) (cljs :optimizations o :compiler-options c) (serve) (t/test :namespaces namespaces)))) |
| 71 | + (comp (init) (connect) (watch) (speak) (hoplon) (cljs :optimizations o :compiler-options c) (serve) (t/test :namespaces namespaces)))) |
72 | 72 |
|
73 | 73 | (deftask test
|
74 | 74 | "Continuously rebuild the test suite during development.
|
|
81 | 81 | (let [o (or optimizations :none)
|
82 | 82 | c {:elide-asserts no-validate}]
|
83 | 83 | (set-env! :source-paths #{"lib/src" "app/src"} :resource-paths #{"tst/src" "app/rsc"})
|
84 |
| - (comp (init) (hoplon) (reload) (cljs :optimizations o :compiler-options c) (serve) (t/test :namespaces namespaces)))) |
| 84 | + (comp (hoplon) (cljs :optimizations o :compiler-options c) (serve) (t/test :namespaces namespaces)))) |
85 | 85 |
|
86 | 86 | (task-options!
|
87 | 87 | init {:file "cnf/local.env"}
|
|
0 commit comments