2
2
'[boot.task.built-in :refer :all ])
3
3
4
4
(task-options!
5
- pom {:project 'configurator
5
+ pom {:project 'kiibohd- configurator
6
6
:version " 0.1"
7
7
:description " Input:Club Configuration Utility"
8
8
:license {" GPLv3" " https://www.gnu.org/licenses/gpl-3.0.en.html" }})
11
11
12
12
(set-env!
13
13
:dependencies
14
- '[[org.clojure/clojure " 1.9.0-beta1 " :scope " provided" ]
14
+ '[[org.clojure/clojure " 1.9.0-beta2 " :scope " provided" ]
15
15
[org.clojure/clojurescript " 1.9.946" :scope " compile" ]
16
16
; ; Boot Deps
17
17
[boot/core " 2.7.2" :scope " provided" ]
18
18
[onetom/boot-lein-generate " 0.1.3" :scope " test" ]
19
- [org.clojure/tools.nrepl " 0.2.12 " :scope " test" ]
20
- [com.cemerick/piggieback " 0.2.1 " :scope " test" ]
19
+ [org.clojure/tools.nrepl " 0.2.13 " :scope " test" ]
20
+ [com.cemerick/piggieback " 0.2.2 " :scope " test" ]
21
21
[weasel " 0.7.0" :scope " test" ]
22
- [adzerk/boot-cljs " 2.1.3 " :scope " test" ]
22
+ [adzerk/boot-cljs " 2.1.4 " :scope " test" ]
23
23
[adzerk/boot-cljs-repl " 0.3.3" :scope " test" ]
24
24
[adzerk/boot-reload " 0.5.2" :scope " test" ]
25
25
; ; Dev tools enhancements
26
- [binaryage/devtools " 0.9.4 " :scope " test" ]
27
- [binaryage/dirac " 1.2.10 " :scope " test" ]
26
+ [binaryage/devtools " 0.9.7 " :scope " test" ]
27
+ [binaryage/dirac " 1.2.17 " :scope " test" ]
28
28
[powerlaces/boot-cljs-devtools " 0.2.0" :scope " test" ]
29
29
; ; Project Dependencies
30
30
[reagent " 0.7.0" :exclusions [org.clojure/tools.reader cljsjs/react]]
31
- [re-frame " 0.10.1 " ]
31
+ [re-frame " 0.10.2 " ]
32
32
[day8.re-frame/undo " 0.3.2" ]
33
- [cljsjs/react " 15.6.1-2 " ]
34
- [cljsjs/react-dom " 15.6.1-2 " ]
33
+ [cljsjs/react " 15.6.2-0 " ]
34
+ [cljsjs/react-dom " 15.6.2-0 " ]
35
35
[cljsjs/react-transition-group " 2.2.0-0" ]
36
36
[cljs-react-material-ui " 0.2.50" ]
37
37
[cljs-css-modules " 0.2.1" ]
38
- [cljs-ajax " 0.5.8 " ]
38
+ [cljs-ajax " 0.7.2 " ]
39
39
[camel-snake-kebab " 0.4.0" ]
40
40
[cljsjs/tinycolor " 1.3.0-0" ]
41
41
[cljsjs/react-color " 2.13.1-0" ]
42
42
[funcool/cuerdas " 2.0.4" ]
43
+ [com.taoensso/timbre " 4.10.0" ]
43
44
]
44
45
:source-paths #{" src" }
45
46
; ;:asset-paths #{"assets"}
61
62
(cljs :ids #{" renderer" }
62
63
; ; TODO -Some odd munging happening in advanced mode.
63
64
:optimizations :none ; :advanced
64
- :compiler-options {:load-tests false
65
- :npm-deps {:react " 15.6.1"
66
- ; :tinycolor2 "1.3.0"
67
- :react-color " 2.13.8" }
68
- :install-deps true
69
- })
70
- (target :dir #{" target" })))
65
+ :compiler-options {:load-tests false })
66
+ ; ; Right now an npm-install will call a naked `target` call clearing everything
67
+ ; ; until a good method for npm dependencies is found this will have to do for now.
68
+ (target :no-clean true )))
71
69
72
70
(def devtools-config
73
71
{:features-to-install [:formatters :hints :async ]
91
89
; ; Compile renderer =========================================
92
90
(cljs :ids #{" renderer" }
93
91
:compiler-options {:closure-defines {'kii.env/dev? true }
94
- :npm-deps {:react " 15.6.1"
95
- ; :tinycolor2 "1.3.0"
96
- :react-color " 2.13.8" }
97
- :install-deps true
98
92
:output-wrapper true
99
93
; There's a little funny business going on with exporting other ns vars
100
94
; to reduce the proliferation of imports for small components so the
113
107
:compiler-options {:asset-path " target/main.out"
114
108
:closure-defines {'kii.env/dev? true }
115
109
})
116
- (target )))
110
+ ; ; Right now an npm-install will call a naked `target` call clearing everything
111
+ ; ; until a good method for npm dependencies is found this will have to do for now.
112
+ (target :no-clean true )))
0 commit comments