-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
31 lines (27 loc) · 1.1 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
29
30
31
(defproject wordsmith "0.1.0"
:description "A markdown editor with live preview and localStorage
saving. Built using ClojureScript and Om."
:url "https://github.com/yuhama/wordsmith"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2173"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[om "0.6.2"]]
:plugins [[lein-cljsbuild "1.0.2"]]
:source-paths ["src"]
:cljsbuild {
:builds [{:id "release"
:source-paths ["src"]
:compiler {
:output-to "resources/main.js"
:optimizations :advanced
:pretty-print false
:preamble ["react/react.min.js"]
:externs ["react/externs/react.js"
"marked.js"]
:closure-warnings {:externs-validation :off}}}
{:id "dev"
:source-paths ["src"]
:compiler {
:output-to "resources/main.dev.js"
:output-dir "resources/dev"
:optimizations :none}}]})