-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
28 lines (25 loc) · 1.38 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
26
27
28
(defproject pretty-spec "0.1.4"
:description "A pretty printer for clojure.spec forms."
:url "https://github.com/jpmonettas/pretty-spec"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1" :scope "provided"]
[org.clojure/clojurescript "1.10.597" :scope "provided"]
[fipp "0.6.8"]]
:target-path "target/%s"
:source-paths ["src"]
:cljsbuild {:builds [{:id "dev"
:figwheel true
:source-paths ["src"]
:compiler {:main pretty-spec.core
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/out"
:asset-path "js/out"
:optimizations :none}}]}
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[com.cemerick/piggieback "0.2.2"]
[figwheel-sidecar "0.5.11"]
[com.stuartsierra/dependency "0.2.0"]
[ring/ring-spec "0.0.3"] ; Real-world specs for testing
[com.gfredericks/test.chuck "0.2.7"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}})