-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
23 lines (20 loc) · 953 Bytes
/
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
(defproject eag/bike-gear-calc "0.1.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.520"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-localrepo "0.4.0"]]
:source-paths ["cljc" "src"]
:cljsbuild {:builds [{:source-paths ["cljc" "src"]
:compiler { ;; :output-to "bike-gear-calc/js/main.js"
:optimizations :whitespace
:pretty-print true}}]}
:hooks [leiningen.cljsbuild]
:repl-options {:init-ns bike-gear-calc.core}
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]])
;;; install locally in m2.
;;; lein pom; lein jar; lein install