-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
73 lines (71 loc) · 4.21 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
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
(defproject strictly-specking "0.1.1"
:description "A Clojure library to help validate edn configuration data, and hopefully more"
:url "https://github.com/bhauman/strictly-specking"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git"
:url "https://github.com/bhauman/strictly-specking"}
:dependencies [[org.clojure/clojure "1.9.0-alpha8"]
;; doing some juggling for 1.9.0
[net.cgrand/parsley "0.9.3"
:exclusions [org.clojure/clojure]]
[net.cgrand/sjacket "0.1.1"
:exclusions [org.clojure/clojure net.cgrand/parsley]]]
;; just to test project parsing
:cljsbuild {:assert true
:builds [{ :id "example-admin"
:source-paths ["src" "dev" "tests" "../support/src"]
:notify-command ["notify"]
:figwheel
{ :websocket-host "localhost"
:compiler { :main 'example.core
:asset-path "js/out"
:libsers ["libs_src" "libs_sscr/tweaky.js"]
:output-to "resources/public/js/example.js"
:output-dir "resources/public/js/out"
:libs ["libs_src" "libs_sscr/tweaky.js"]
;; :externs ["foreign/wowza-externs.js"]
:foreign-libs [{:file "foreign/wowza.js"
:provides ["wowzacore"]}]
;; :recompile-dependents true
:optimizations :none}
:on-jsload 'example.core/fig-reload
:on-message 'example.core/on-message
:open-urls ["http://localhost:3449/index.html"
"http://localhost:3449/index.html"
"http://localhost:3449/index.html"
"http://localhost:3449/index.html"
"http://localhost:3449/index.html"]
:debug true
}
:compiler { :main 'example.core
:asset-path "js/out"
:output-to "resources/public/js/example.js"
:output-dir "resources/public/js/out"
:libs ["libs_src" "libs_sscr/tweaky.js"]
;; :externs ["foreign/wowza-externs.js"]
:foreign-libs [{:file "foreign/wowza.js"
:provides ["wowzacore"]}]
;; :recompile-dependents true
:optimizations :none}}
{ :id "example"
:source-paths ["src" "dev" "tests" "../support/src"]
:notify-command ["notify"]
:figwheel
{ :websocket-host "localhost"
:on-jsload 'example.core/fig-reload
:on-message 'example.core/on-message
:open-urls ["http://localhost:3449/index.html"]
:debug true
}
:compiler { :main 'example.core
:asset-path "js/out"
:output-to "resources/public/js/example.js"
:output-dir "resources/public/js/out"
:libs ["libs_src" "libs_sscr/tweaky.js"]
;; :externs ["foreign/wowza-externs.js"]
:foreign-libs [{:file "foreign/wowza.js"
:provides ["wowzacore"]}]
;; :recompile-dependents true
:optimizations :none}}]}
)