-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
14 lines (14 loc) · 960 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(defproject lt-clojure-linter "0.0.1"
:dependencies [[org.clojure/clojure "1.5.1"]]
:profiles {:expr-checker {:dependencies [[org.clojure/clojurescript "1.8.40"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.reader "1.0.0-beta1"]
[kibit-cljs "0.1.3"]]
:plugins [[lein-cljsbuild "1.1.3"]]
:cljsbuild {:builds [{:id "expr-checker-module"
:source-paths ["src-module"]
:compiler {:optimizations :simple
:output-wrapper true
:output-to "expr-checker-module.js"
:pretty-print true}}]}}}
)