-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (25 loc) · 1.03 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
(defproject om-editor-app "0.1.0-SNAPSHOT"
:description "Example app using om-codemirror"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2322"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[om-codemirror "0.2.1"]
[om "0.7.3"]]
:plugins [[lein-cljsbuild "1.0.3"]
[lein-cljsasset "0.2.0"]]
:cljsasset {:js ["react/react.js"]
;; :js-output {:dir "resources/public/js"
;; :file "assets.js"}
;; :css-output {:dir "resources/public/css"
;; :file "assets.css"}
}
:cljsbuild {
:builds [{:source-paths ["src"]
:compiler {
:output-to "app.js"
:output-dir "out"
:optimizations :whitespace
:source-map "app.js.map"}}]})