-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathproject.clj
33 lines (26 loc) · 905 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
24
25
26
27
28
29
30
31
32
33
(defproject atom-parinfer "1.24.0"
:description "Parinfer extension for the Atom editor."
:author "Chris Oakman <[email protected]>"
:url "https://github.com/oakmac/atom-parinfer"
:license {:name "ISC License"
:url "https://github.com/oakmac/atom-parinfer/blob/master/LICENSE.md"
:distribution :repo}
:dependencies
[[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.764"]
[binaryage/oops "0.7.0"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:source-paths ["src"]
:clean-targets ["target" "./lib/atom-parinfer.js"]
:cljsbuild
{:builds
[{:id "prod"
:source-paths ["src-cljs"]
:compiler
{:output-to "./lib/atom-parinfer.js"
:optimizations :advanced
:language-out :ecmascript5
:target :nodejs
:hashbang false
:pretty-print false
:pseudo-names false}}]})