-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (22 loc) · 1.02 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
(defproject sentry-test "0.1.0-SNAPSHOT"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]]
:plugins [[lein-figwheel "0.5.8"]
[lein-cljsbuild "1.1.4" :exclusions [[org.clojure/clojure]]]]
:clean-targets ^{:protect false} [:target-path "public/js/compiled"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src"]
:figwheel true
:compiler {:main "sentry-test.core"
:asset-path "js/compiled"
:output-to "public/js/compiled/sentrytest.js"
:output-dir "public/js/compiled"}}
{:id "min"
:source-paths ["src"]
:compiler {:output-to "public/js/compiled/sentrytest.js"
:main sentry-test.core
:optimizations :advanced
:externs ["public/lib/raven.min.js"]
:pretty-print false}}]})