-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.boot
34 lines (30 loc) · 935 Bytes
/
build.boot
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 '[[org.clojure/clojure "1.8.0"]
[degree9/boot-npm "1.10.0-SNAPSHOT"]
[degree9/boot-exec "1.1.0-SNAPSHOT"]
[degree9/boot-semver "1.6.0" :scope "test"]]
:resource-paths #{"src"})
(require '[degree9.boot-semver :refer :all])
(task-options!
pom {:project 'degree9/boot-css
:description "CSS Preprocessors for boot-clj."
:url "https://github.com/degree9/boot-exec"
:scm {:url "https://github.com/degree9/boot-exec"}})
(deftask develop
"Build boot-css for development."
[]
(comp
(version :develop true
:minor 'inc
:patch 'zero
:pre-release 'snapshot)
(watch)
(target)
(build-jar)))
(deftask deploy
"Build boot-css and deploy to clojars."
[]
(comp
(version)
(target)
(build-jar)
(push-release)))