-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
37 lines (29 loc) · 1.24 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
32
33
34
35
36
37
;(defproject demo "0.1.0-SNAPSHOT"
; :description "FIXME: write description"
; :url "http://example.com/FIXME"
; :license {:name "Eclipse Public License"
; :url "http://www.eclipse.org/legal/epl-v10.html"}
; :dependencies [[org.clojure/clojure "1.8.0"]]
; :main ^:skip-aot demo.core
; :target-path "target/%s"
; :profiles {:uberjar {:aot :all}})
; project.clj
(defproject demo "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:min-lein-version "2.5.3"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]
[reagent "0.6.0"]]
:plugins [[lein-cljsbuild "1.1.4"]]
:clean-targets ^{:protect false} ["resources"]
:cljsbuild {
:builds [{:id "server"
:source-paths ["src-server"]
:compiler {
:main demo.server
:output-to "resources/public/js/server-side/server.js"
:output-dir "resources/public/js/server-side"
:target :nodejs
:optimizations :none
:source-map true}}]})