This repository was archived by the owner on May 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
40 lines (40 loc) · 2.19 KB
/
project.clj
File metadata and controls
40 lines (40 loc) · 2.19 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
(defproject democracyworks/imbarcode "1.0.3-SNAPSHOT"
:description "Generate USPS Intelligent Mail Barcodes"
:url "https://github.com/democracyworks/imbarcode"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]
[org.clojure/test.check "0.9.0"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.7"]]
:profiles {:dev {:dependencies [[doo "0.1.7"]
[org.clojure/data.csv "0.1.3"]]}
:test {:resource-paths ["test-resources"]}
; Needed for the alias `clj-test`
:without-aliases {:aliases ^:replace {}}}
:source-paths ["src/cljc" "src/clj"]
:test-paths ["test/cljc"]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs" "src/cljc"]
:compiler {:output-to "resources/public/javascript/main-dev.js"
:output-dir "resources/public/javascript/dev/"
:optimizations :none
:pretty-print true
:source-map true}}
{:id "prod"
:source-paths ["src/cljs" "src/cljc"]
:compiler {:output-to "resources/public/javascript/main.js"
:output-dir "resources/public/javascript/prod/"
:optimizations :advanced}}
{:id "test"
:source-paths ["src/cljs" "src/cljc" "test/cljs" "test/cljc"]
:compiler {:output-to "target/cljs/testable.js"
:output-dir "target/cljs/"
:optimizations :whitespace
:pretty-print true
:main imbarcode.test-runner}}]}
:aliases {"test" ["do" "test," "cljs-test"]
"clj-test" ["with-profile" "+without-aliases" "test"]
"cljs-test" ["doo" "phantom" "test" "once"]}
:deploy-repositories [["releases" :clojars]])