-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathproject.clj
25 lines (21 loc) · 1.08 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
(defproject petrol "0.1.3"
:description "A simple event-handling framework for ClojureScript projects."
:url "https://github.com/krisajenkins/petrol"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.clojure/core.async "0.2.374"]
[bidi "1.24.0"]
[com.cemerick/url "0.1.1"]
[kibu/pushy "0.3.6"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-1"]]
:cljsbuild {:builds {:petrol {:source-paths ["src"]
:compiler {:main petrol.core
:asset-path "js/compiled/out"
:output-to "resources/public/js/compiled/petrol.js"
:output-dir "resources/public/js/compiled/out"
:optimizations :none}}}}
:figwheel {:repl true
:nrepl-port 7888})