-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.boot
More file actions
34 lines (30 loc) · 849 Bytes
/
build.boot
File metadata and controls
34 lines (30 loc) · 849 Bytes
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
(set-env!
:dependencies '[[boot/core "2.8.2"]
[degree9/boot-semver "1.8.0" :scope "test"]]
:resource-paths #{"src"})
(require
'[degree9.boot-semver :refer :all]
'[degree9.boot-shadow :as shadow])
(task-options!
pom {:project 'degree9/boot-shadow
:description "Boot-clj task for compiling ClojureScript using shadow-cljs."
:url "https://github.com/degree9/boot-shadow"
:scm {:url "https://github.com/degree9/boot-shadow"}}
target {:dir #{"target"}})
(deftask develop
"Build boot-shadow for development."
[]
(comp
(version :develop true
:pre-release 'snapshot)
(watch)
(target)
(build-jar)))
(deftask deploy
"Build boot-shadow and deploy to clojars."
[]
(comp
(version)
(target)
(build-jar)
(push-release)))