-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.boot
27 lines (23 loc) · 1.15 KB
/
build.boot
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
(set-env!
:dependencies '[[org.clojure/clojure "1.7.0" :scope "provided"]
[org.clojure/clojurescript "1.7.122" :scope "test"]
[adzerk/boot-cljs "1.7.48-3" :scope "test"]
[adzerk/bootlaces "0.1.10" :scope "test"]
[crisptrutski/boot-cljs-test "0.2.0-SNAPSHOT" :scope "test"]
[com.cognitect/transit-cljs "0.8.225"]]
:source-paths #{"test"}
:resource-paths #{"src"})
(require '[adzerk.bootlaces :refer :all]
'[crisptrutski.boot-cljs-test :refer [test-cljs]])
(def +version+ "2.0.1")
(bootlaces! +version+)
(task-options!
test-cljs {:js-env :phantom
:exit? true
:namespaces '#{alandipert.storage-atom.test}}
pom {:project 'alandipert/storage-atom
:version +version+
:description "ClojureScript atoms backed by HTML5 web storage."
:url "https://github.com/alandipert/storage-atom"
:scm {:url "https://github.com/alandipert/storage-atom"}
:license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}})