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
46 lines (34 loc) · 1.59 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
44
45
46
(defproject jarohen/flow.todomvc ""
:description "A sample ToDoMVC app demonstrating Flow"
: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.5"]
[hiccup "1.0.4"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/clojurescript "0.0-2371"]
[gaka "0.3.0"]
[jarohen/flow "0.3.0-SNAPSHOT"]]
: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 "todomvc-config.edn"
:resource-paths ["resources" "target/resources"]
:cljsbuild {:builds {:dev
{:source-paths ["ui-src"]
:compiler {:output-to "target/resources/js/todomvc.js"
:output-dir "target/resources/js/"
:optimizations :none
:pretty-print true}}
:prod
{:source-paths ["ui-src"]
:compiler {:output-to "target/resources/js/todomvc.js"
:optimizations :advanced}}}}
:aliases {"dev" ["do"
["shell" "mkdir" "-p" "target/resources"]
["pdo"
["cljsbuild" "auto" "dev"]
"frodo"]]})