File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 22All notable changes to this project will be documented in this file.
33This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
44
5- ## [ 0.1.2] ( https://github.com/Lambda-X/lambone/compare/0.1.1...0.1.2 )
5+ ## [ 0.2.0] ( https://github.com/boot-clj/boot-cljs-devtools/compare/0.1.2...0.2.0 )
6+
7+ - _ \* API breaking\* _ Task split: now there is one task for ` cljs-devtools ` and one for ` dirac ` (thank you @pepe )
8+ - Throw if required depedencies are missing for the called task
9+
10+ ## [ 0.1.2] ( https://github.com/boot-clj/boot-cljs-devtools/compare/0.1.1...0.1.2 )
611
712- Support for Dirac 0.7.x
813
9- ## [ 0.1.1] ( https://github.com/Lambda-X/lambone /compare/0.1.0...0.1.1 )
14+ ## [ 0.1.1] ( https://github.com/boot-clj/boot-cljs-devtools /compare/0.1.0...0.1.1 )
1015
1116- Use the ` :preloads ` compiler options (ClojureScript >= ` 1.9.89 ` is required)
1217- Require ` boot-cljs-devtools ` before any other require
1318- Add ` nrepl-opts ` for configuring the spawned nRepl instance
1419- Add ` dirac-opts ` for configuring ` dirac `
1520
16- ## [ 0.1.0] ( https://github.com/Lambda-X/lambone /compare/af649ed...0.1.0 )
21+ ## [ 0.1.0] ( https://github.com/boot-clj/boot-cljs-devtools /compare/af649ed...0.1.0 )
1722### Initial Release
1823- First version of the jupl/boot-cljs-devtools.
Original file line number Diff line number Diff line change 44
55(require '[adzerk.bootlaces :refer :all ])
66
7- (def +version+ " 0.1.3-SNAPSHOT " )
7+ (def +version+ " 0.2.0 " )
88
99(bootlaces! +version+)
1010
1515 :url " https://github.com/boot-clj/boot-cljs-devtools"
1616 :scm {:url " https://github.com/boot-clj/boot-cljs-devtools" }
1717 :license {" MIT" " https://opensource.org/licenses/MIT" }})
18+
19+ (def snapshot? #(.endsWith +version+ " -SNAPSHOT" ))
20+
21+ (deftask deploy []
22+ (comp
23+ (build-jar )
24+ (if (snapshot? )
25+ (push-snapshot )
26+ (push-release ))))
You can’t perform that action at this time.
0 commit comments