-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathproject.clj
More file actions
executable file
·47 lines (36 loc) · 2.24 KB
/
Copy pathproject.clj
File metadata and controls
executable file
·47 lines (36 loc) · 2.24 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject cider/piggieback "0.7.0"
:description "Middleware adding support for running ClojureScript REPLs over nREPL."
:url "https://github.com/nrepl/piggieback"
:license {:name "Eclipse Public License"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git" :url "https://github.com/nrepl/piggieback"}
:min-lein-version "2.0.0"
:source-paths ["src"]
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:profiles {:provided {:dependencies [[org.clojure/clojure "1.12.5"]
[org.clojure/clojurescript "1.12.145"]
[nrepl/nrepl "1.0.0"]]}
:test {:source-paths ["env/test"]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/clojurescript "1.10.914"]]}
:1.11 {:dependencies [[org.clojure/clojure "1.11.4"]
[org.clojure/clojurescript "1.11.132"]]}
:1.12 {:dependencies [[org.clojure/clojure "1.12.5"]
[org.clojure/clojurescript "1.12.145"]]}
:nrepl-1.0 {:dependencies [[nrepl/nrepl "1.0.0"]]}
:nrepl-1.1 {:dependencies [[nrepl/nrepl "1.1.1"]]}
:nrepl-1.2 {:dependencies [[nrepl/nrepl "1.2.0"]]}
:nrepl-1.3 {:dependencies [[nrepl/nrepl "1.3.0"]]}
:nrepl-1.4 {:dependencies [[nrepl/nrepl "1.4.0"]]}
:nrepl-1.7 {:dependencies [[nrepl/nrepl "1.7.0"]]}
;; Need ^:repl because of: https://github.com/technomancy/leiningen/issues/2132
:repl ^:repl [:test
{:source-paths ["env/repl"]
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}]
:cljfmt {:plugins [[dev.weavejester/lein-cljfmt "0.16.4"]]}
:eastwood {:plugins [[jonase/eastwood "1.4.3"]]
:eastwood {:config-files ["eastwood.clj"]
:exclude-linters [:no-ns-form-found]}}})