forked from priornix/antizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
profiles.clj
41 lines (39 loc) · 1.21 KB
/
profiles.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
{:examples
{:dependencies [[reagent "0.8.0-alpha3"]
[rum "0.11.2"]
[org.omcljs/om "1.0.0-beta4-SNAPSHOT"]]
:plugins [[lein-cljsbuild "1.1.5"]]
:resource-paths ["examples/resources"]
:source-paths ["examples/src"]
:main ^:skip-aot antizer-examples.server
:cljsbuild
{:builds
{:app
{:source-paths ["examples/src"]
:compiler
{:main "antizer-examples.app"
:asset-path "js/out"
:output-dir "examples/resources/js/out"
:output-to "examples/resources/js/app.js"
:pretty-print false
:optimizations :advanced}}}}}
:examples-dist
[:examples
{:cljsbuild
{:builds
{:app
{:compiler
{:output-to "doc/dist/latest/examples/js/app.js"
:output-dir "doc/dist/latest/examples/js/out"}}}}}]
:examples-dev
[:examples
{:dependencies [[figwheel-sidecar "0.5.15"]]
:plugins [[lein-figwheel "0.5.15"]]
:figwheel {:css-dirs ["examples/resources/css"]}
:cljsbuild
{:builds
{:app
{:figwheel true
:compiler
{:optimizations :none
:pretty-print true}}}}}]}