-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
30 lines (29 loc) · 1.18 KB
/
project.clj
File metadata and controls
30 lines (29 loc) · 1.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
(defproject parseapp-cljs "0.26.0"
:description "clojurescript to parse cloud code"
:url "https://github.com/utahstreetlabs/parseapp-cljs"
:repositories {
"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"
}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[com.cemerick/url "0.1.0"]
[com.tvachon/core.async "0.2.0"]
[org.clojure/tools.reader "0.8.1"]
[prismatic/schema "0.1.9"]]
:plugins [[lein-cljsbuild "1.0.0"]]
:hooks [leiningen.cljsbuild]
:source-paths ["src/clj" "test/clj"
;; use a custom version of ClojureScript
"comp/clojurescript/src/clj"
"comp/clojurescript/src/cljs"]
:cljsbuild {
:builds {
:main {
:source-paths ["src/cljs"]
:jar true}
:test {:source-paths ["src/cljs" "test/cljs"]
:compiler {:output-to "test_app/cloud/cljs/cljs.js"
:optimizations :whitespace
:pretty-print true
:target :nodejs
:preamble ["parse_preamble.js"]}}}})