Skip to content

Commit

Permalink
[firebase] update to 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
crisptrutski committed Oct 8, 2015
1 parent f6ef2a1 commit 4366ba4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion firebase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[](dependency)
```clojure
[cljsjs/firebase "2.2.7-1"] ;; latest release
[cljsjs/firebase "2.3.1-0"] ;; latest release
```
[](/dependency)

Expand Down
9 changes: 5 additions & 4 deletions firebase/build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,21 @@
(require '[adzerk.bootlaces :refer :all]
'[cljsjs.boot-cljsjs.packaging :refer :all])

(def +version+ "2.2.7-1")
(def +version+ "2.3.1")
(def +cljs-version+ (str +version+ "-0"))

(task-options!
pom {:project 'cljsjs/firebase
:version +version+
:version +cljs-version+
:description "Javascript client for Firebase.com"
:url "https://www.firebase.com/docs/web/api/"
:scm {:url "https://github.com/cljsjs/packages"}
:license {"Firebase ToS" "https://www.firebase.com/terms/terms-of-service.html"}})

(deftask package []
(comp
(download :url "https://github.com/firebase/firebase-bower/archive/v2.2.7.zip"
:checksum "4BA3685E136567A0BA1F63AE446914A2"
(download :url (str "https://github.com/firebase/firebase-bower/archive/v" +version+ ".zip")
:checksum "4497ADAF3F5846885A1F429230BB54CB"
:unzip true)
(sift :move {#"firebase-bower-([\d\.]*)/firebase.js" "cljsjs/development/firebase.inc.js"})
(sift :include #{#"^cljsjs"})
Expand Down

0 comments on commit 4366ba4

Please sign in to comment.