catch exceptions hook, line, and sinker
1; This Source Code Form is subject to the terms of the Mozilla Public
2; License, v. 2.0. If a copy of the MPL was not distributed with this
3; file, You can obtain one at https://mozilla.org/MPL/2.0/.
4
5{:paths ["src" "resources"]
6 :deps {io.github.noahtheduke/cond-plus {:mvn/version "1.3.0"}}
7 :aliases
8 {:dev {:extra-paths ["dev"]
9 :extra-deps {criterium/criterium {:mvn/version "0.4.6"}
10 com.clojure-goes-fast/clj-java-decompiler {:mvn/version "0.3.6"}
11 io.github.tonsky/clj-reload {:mvn/version "0.7.1"}}}
12 :repl {:extra-deps {nrepl/nrepl {:mvn/version "1.3.0"}
13 com.bhauman/rebel-readline {:mvn/version "0.1.4"}
14 cider/cider-nrepl {:mvn/version "0.50.1"}}
15 :main-opts ["-m" "nrepl.cmdline"
16 "--interactive"
17 "--middleware" "[cider.nrepl/cider-middleware]"
18 "-f" "rebel-readline.main/-main"]}
19 :test {:extra-paths ["test"]
20 :extra-deps {nubank/matcher-combinators {:mvn/version "3.9.1"}
21 io.github.noahtheduke/lazytest {:mvn/version "1.8.0"}}}
22
23 :runner {:main-opts ["-m" "lazytest.main"]}
24
25 :v1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
26 :v1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
27 :v1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}}
28
29 :clein {:deps {io.github.noahtheduke/clein {:mvn/version "0.5.0"}}
30 :main-opts ["-m" "noahtheduke.clein"]}
31 :clein/build {:lib com.noahbogart/sinker
32 :main noahtheduke.sinker
33 :version "resources/com.noahbogart/sinker/SINKER_VERSION"
34 :url "https://tangled.sh/@noahbogart.com/sinker"
35 :license {:name "MPL-2.0"
36 :url "https://mozilla.org/MPL/2.0"}
37 :src-dirs ["src"]
38 :resource-dirs ["resources"]}}}