forked from teropa/hiccups
-
Notifications
You must be signed in to change notification settings - Fork 1
/
profiles.clj
90 lines (85 loc) · 4.59 KB
/
profiles.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
;;; ****************************** NOTES ******************************
;;;
;;; The hiccups/profiles.clj file is used for keeping the developer
;;; view of your cljs lib separated from its user view. This way the
;;; user of your lib does not even see the complexity of the developer
;;; view of the lib. The hiccups/profiles.clj should never contain
;;; any configuration for the :user profile. The content of
;;; hiccups/profiles.clj will be merge with the content from the
;;; ~/.lein/profiles.clj and hiccups/project.clj. Keep in mind that
;;; any in case of conflicts, the hiccups/profiles.clj takes
;;; precedence over the hiccups/project.clj which, in turn, takes
;;; precedence over the ~/.lein/profiles.clj
;;;
;;; *******************************************************************
{:dev { ;; Add the out dir to the dirs to be cleaned by the lein clean
;; command. Add here any pathname containing generated files
;; to be cleaned by the lein clean command.
:clean-targets ["out"]
;; Add the test/clj and test/cljs dir to the leiningen
;; :test-paths option. It has to contain also the superset of
;; all the pathnames used for CLJS purpose. See below the
;; comment on Leiningen :source-paths.
:test-paths ["test/clj" "test/cljs"]
;; We need to add dev-resources/tools/repl, because cljsbuild
;; does not add its own source-paths to the project
;; source-paths.
:source-paths ["dev-resources/tools/http" "dev-resources/tools/repl"]
;; Add the dev-resources to the project classpath.
:resources-paths ["dev-resources"]
;; To instrument the project with the brepl facilities
;; (i.e. the ring/compojure/enlive libs) and the austin plugin
;; (cf. see below)
:dependencies [[ring "1.2.1"]
[compojure "1.1.6"]
[enlive "1.1.4"]]
;; The lib for cljs unit testing which is a maximal port of
;; clojure.test standard lib;
;; The lib for instrumenting the brepl
:plugins [[com.cemerick/clojurescript.test "0.2.1"]
[com.cemerick/austin "0.1.3"]]
;; Cljsbuild settings for development and test phases
:cljsbuild
{;; Here we configure one build for each compiler optmizations
;; options. We do not include the :none optimization.
:builds {;; The :whitespace optimizations build. This is the
;; only build included in the index.html page used
;; for the brepl connection
:whitespace
{:source-paths ["src/cljs" "test/cljs" "dev-resources/tools/repl"]
:compiler
{:output-to "dev-resources/public/js/hiccups.js"
:optimizations :whitespace
:pretty-print true}}
;; The :simple optimizations build
:simple
{:source-paths ["src/cljs" "test/cljs"]
:compiler
{:output-to "dev-resources/public/js/simple.js"
:optimizations :simple
:pretty-print false}}
;; The :advanced optimizations build
:advanced
{:source-paths ["src/cljs" "test/cljs"]
:compiler
{:output-to "dev-resources/public/js/advanced.js"
:optimizations :advanced
:pretty-print false}}}
;; Here we configure the test commands for running the
;; test. To be able to use this commands you have to install
;; phantomjs on you development machine. Phantomjs is the most
;; used webkit-based headless browser for unit testing JS code
:test-commands {;; test :whitespace build against phantomjs
"phantomjs-ws"
["phantomjs" :runner "dev-resources/public/js/hiccups.js"]
;; test :simple build against phantomjs
"phantomjs-simple"
["phantomjs" :runner "dev-resources/public/js/simple.js"]
;; test advanced build against phantomjs
"phantomjs-advanced"
["phantomjs" :runner "dev-resources/public/js/advanced.js"]}}
:injections [(require '[ring.server :as http :refer [run]]
'cemerick.austin.repls)
(defn browser-repl []
(cemerick.austin.repls/cljs-repl (reset! cemerick.austin.repls/browser-repl-env
(cemerick.austin/repl-env))))]}}