This repository has been archived by the owner on Nov 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
28 lines (28 loc) · 1.78 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 kamituel/systems-toolbox-chrome "0.1.4"
:description "Chrome DevTools support for systems-toolbox library"
:url "https://github.com/kamituel/systems-toolbox-chrome"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.9.76"]
[matthiasn/systems-toolbox "0.5.22"]
[matthiasn/systems-toolbox-ui "0.5.9"]
[matthiasn/systems-toolbox-sente "0.5.21"]
[kamituel/s-tlbx-probe "0.1.4"]
[alandipert/storage-atom "1.2.4" :exclusions [org.clojure/clojure org.clojure/clojurescript]]
[com.cognitect/transit-cljs "0.8.239"]]
:plugins [[lein-cljsbuild "1.1.1"]]
:clean-targets ^{:protect false} ["resources/devtools/js/"]
:cljsbuild {:builds {:devtools {:source-paths ["src/devtools/cljs"]
:compiler {:asset-path "js"
:optimizations :simple
:output-dir "resources/devtools/js"
:output-to "resources/devtools/js/all.js"
:source-map "resources/devtools/js/all.map"}}
#_:prod #_{:source-paths ["src/devtools/cljs"]
:compiler {:asset-path "js"
:optimizations :advanced
:pretty-print false
:output-dir "resources/devtools/js"
:output-to "resources/devtools/js/all.js"
:externs ["externs/chrome.js"]}}}})