Skip to content

Commit

Permalink
Upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
EmergentBehavior committed Jun 5, 2018
1 parent acccfba commit e3cbee5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion slate/README.md
Expand Up @@ -2,7 +2,7 @@

[](dependency)
```clojure
[cljsjs/slate "0.33.4-0"] ;; latest release
[cljsjs/slate "0.33.6-0"] ;; latest release
```
[](/dependency)

Expand Down
4 changes: 4 additions & 0 deletions slate/boot-cljsjs-checksums.edn
@@ -0,0 +1,4 @@
{"cljsjs/slate/development/slate.inc.js"
"3255B0A5E8ECFD761BA16904B240C5C2",
"cljsjs/slate/production/slate.min.inc.js"
"AE22696418D8B8204527852217023CD2"}
17 changes: 7 additions & 10 deletions slate/build.boot
@@ -1,4 +1,4 @@
(def +lib-version+ "0.33.4")
(def +lib-version+ "0.33.6")
(def +version+ (str +lib-version+ "-0"))

(set-env!
Expand All @@ -18,16 +18,13 @@

(deftask package []
(comp
(download :url (str "https://unpkg.com/slate@" +lib-version+ "/dist/slate.js")
:checksum "04b5542a4e40a4c07ffb24972cba1905")
(download :url (str "https://unpkg.com/slate@" +lib-version+ "/dist/slate.min.js")
:checksum "540ce9f0ce48e97fff0aa160dcd272f1")
(sift :move {#"^slate.js$"
"cljsjs/slate/development/slate.inc.js"
#"^slate.min.js"
"cljsjs/slate/production/slate.min.inc.js"})
(download :url (format "https://unpkg.com/slate@%s/dist/slate.js" +lib-version+)
:target "cljsjs/slate/development/slate.inc.js")
(download :url (format "https://unpkg.com/slate@%s/dist/slate.min.js" +lib-version+)
:target "cljsjs/slate/production/slate.min.inc.js")
(sift :include #{#"^cljsjs"})
(deps-cljs :name "cljsjs.slate"
:requires ["cljsjs.immutable"])
(pom)
(jar)))
(jar)
(validate)))

0 comments on commit e3cbee5

Please sign in to comment.