This repository has been archived by the owner on Oct 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.clj
43 lines (32 loc) · 1.54 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
34
35
36
37
38
39
40
41
42
43
(defproject jarohen/flow.counter ""
:description "An example 'Counter' application for the Flow tutorial"
:url "https://github.com/james-henderson/blob/master/sample/counter"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[ring/ring-core "1.2.0"]
[compojure "1.1.6"]
[hiccup "1.0.5"]
[jarohen/flow "0.3.0-SNAPSHOT"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/clojurescript "0.0-2371"]]
:plugins [[jarohen/lein-frodo "0.4.1"]
[jarohen/simple-brepl "0.1.2"]
[lein-cljsbuild "1.0.3"]
[lein-pdo "0.1.1"]
[lein-shell "0.4.0"]]
:frodo/config-resource "counter-config.edn"
:source-paths ["src" "../../src" "../../target/generated/clj"]
:resource-paths ["resources" "target/resources"]
:cljsbuild {:builds {:dev
{:source-paths ["ui-src" "../../src" "../../target/generated/cljs"]
:compiler {:output-to "target/resources/js/counter.js"
:output-dir "target/resources/js/"
:optimizations :none
:pretty-print true}}}}
:aliases {"dev" ["do"
["shell" "mkdir" "-p"
"target/resources"]
["pdo"
["cljsbuild" "auto" "dev"]
"frodo"]]})