This repository was archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
53 lines (45 loc) · 1.62 KB
/
project.clj
File metadata and controls
53 lines (45 loc) · 1.62 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 reason "0.10.0-SNAPSHOT"
:description "Library for producing predicates from textual user input."
:url "https://github.com/racksec/reason"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["releases" :clojars] ["snapshots" :clojars]]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.293"]]
:plugins [[lein-cljfmt "0.5.6"]]
:source-paths ["src"]
:clean-targets ^{:protect false}
["dev-resources/public/js/compiled" "target" "out"]
:cljsbuild
{:builds
[{:id "dev"
:source-paths ["src"]
:figwheel true
:compiler
{:main reason.core
:asset-path "js/compiled/out"
:output-to "dev-resources/public/js/compiled/reason.js"
:source-map-timestamp true}}
{:id "min"
:source-paths ["src"]
:compiler
{:main "reason.core"
:optimizations :advanced
:output-dir "target/min/"
:output-to "target/min/reason.js"
:pretty-print false}}
{:id "test"
:source-paths ["src" "test"]
:compiler
{:main "reason.runner"
:optimizations :whitespace
:output-dir "target/test/"
:output-to "target/test.js"
:pretty-print true}}]}
:profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.1"]
[org.clojure/tools.nrepl "0.2.12"]]
:plugins [[lein-doo "0.1.7"]
[lein-cljsbuild "1.1.4"]
[lein-figwheel "0.5.8"]]}}
:figwheel {:css-dirs ["dev-resources/public/css"]
:nrepl-port 7002})