-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
48 lines (42 loc) · 2.4 KB
/
Copy pathproject.clj
File metadata and controls
48 lines (42 loc) · 2.4 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
48
(defproject district0x/district-ui-logging "1.1.0-SNAPSHOT"
:description "district UI module to set up devtools logging"
:url "https://github.com/district0x/district-ui-logging"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[cljsjs/sentry-browser "5.4.3-0"]
[com.taoensso/timbre "4.10.0"]
[district0x/error-handling "1.0.4"]
[mount "0.1.11"]
[org.clojure/clojurescript "1.10.439"]
[re-frame "0.10.5"]]
:doo {:paths {:karma "./node_modules/karma/bin/karma"}}
:npm {:devDependencies [[karma "1.7.1"]
[karma-chrome-launcher "2.2.0"]
[karma-cli "1.0.1"]
[karma-cljs-test "0.1.0"]]}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.9.0"]
[com.cemerick/piggieback "0.2.2"]
[org.clojure/tools.nrepl "0.2.13"]
[org.clojure/core.async "0.3.465"]
[binaryage/devtools "0.9.7"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.8"]
[lein-npm "0.6.2"]]}}
:deploy-repositories [["snapshots" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]
["releases" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["deploy"]]
:cljsbuild {:builds [{:id "tests"
:source-paths ["src" "test"]
:compiler {:output-to "tests-output/tests.js"
:output-dir "tests-output"
:main "tests.runner"
:optimizations :none
:external-config {:devtools/config {:features-to-install :all}}}}]})