-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.clj
21 lines (17 loc) · 857 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject node-cljfmt "0.4.0"
:description "A node script that reformats a file to proper clojure formatting"
:url "http://github.com/snoe/node-cljfmt"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.10.439"]
[cljfmt "0.6.3"]]
:plugins [[lein-cljsbuild "1.1.2"]]
:clean-targets ["target" "bin/cljfmt"]
:cljsbuild {:builds [{:id "release"
:source-paths ["src"]
:compiler {:main node-cljfmt.main
:asset-path "target"
:verbose true
:output-to "bin/cljfmt"
:output-dir "target"
:optimizations :advanced
:target :nodejs}}]})