-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
33 lines (24 loc) · 1.36 KB
/
project.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
(defproject greenpowermonitor/reffectory "0.1.1-SNAPSHOT"
:description "Clojure/ClojureScript framework inspired by re-frame that provides a full events system with effects and coeffects"
:url "https://github.com/GreenPowerMonitor/reffectory"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git"
:url "https://github.com/GreenPowerMonitor/reffectory"}
:profiles {:provided {:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.339"]]}
:dev {:dependencies [[org.clojure/core.async "0.4.474"]]}}
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.10"]
[lein-auto "0.1.3"]
[lein-cljfmt "0.6.0"]]
:doo {:build "unit-tests"
:alias {:default [:node]}}
:auto {"test" {:file-pattern #"\.(clj|cljs|cljc|edn)$"}}
:clean-targets ^{:protect false} ["resources/public/js" "target" "out"]
:cljsbuild {:builds [{:id "unit-tests"
:source-paths ["src" "test"]
:compiler {:output-to "out/unit_tests.js"
:main greenpowermonitor.unit-tests-runner
:target :nodejs
:optimizations :none}}]})