-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
53 lines (44 loc) · 2.18 KB
/
project.clj
File metadata and controls
53 lines (44 loc) · 2.18 KB
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
47
48
49
50
51
52
53
(defproject cellf "0.1.0-SNAPSHOT"
:description "Find yourself"
:url "https://oxism.com/cellf"
:license {:name "The MIT License (MIT)"
:url "http://opensource.org/licenses/mit-license.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.520"]
[org.clojure/core.async "0.4.500"]
[org.omcljs/om "0.9.0"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-figwheel "0.5.19"]]
:source-paths ["src" "test"]
:clean-targets ^{:protect false} ["resources/public/js/compiled"
"resources/test/compiled.js"
"target"]
:cljsbuild
{:builds {:dev {:source-paths ["src"]
:figwheel {}
:compiler {:main cellf.core
:asset-path "js/compiled/out"
:output-to "resources/public/js/compiled/cellf.js"
:output-dir "resources/public/js/compiled/out"
:optimizations :none
:source-map true
:source-map-timestamp true
:cache-analysis true}}
:min {:source-paths ["src"]
:compiler {:output-to "cellf.min.js"
:main cellf.core
:optimizations :advanced
:pretty-print false
:externs ["resources/externs/gif.ext.js"]}}
:test {:source-paths ["src" "test"]
:notify-command ["phantomjs"
"resources/test/test.js"
"resources/test/test.html"]
:compiler {:output-to "resources/test/compiled.js"
:optimizations :simple
:output-dir "resources/public/js/out"
:pretty-print true}}}
:test-commands {"test" ["phantomjs"
"resources/test/test.js"
"resources/test/test.html"]}}
:figwheel {:css-dirs ["resources/public/css"]})