gadfly361 / soda-ash

Soda-ash is an interface between clojurescript's Reagent and Semantic UI React
MIT License
152 stars 8 forks source link

bumping semantic-ui-react to 0.81.1 #11

Closed jefffriesen closed 6 years ago

jefffriesen commented 6 years ago

0.81.1 is now on cljsjs

gadfly361 commented 6 years ago

@jefffriesen Thanks so much! Just pushed an updated version to clojars.

jefffriesen commented 6 years ago

Cool. I'm new to Clojure. How did you push it to Clojars?

gadfly361 commented 6 years ago

@jefffriesen

As a prerequisite to push to clojars you need to have an account with https://clojars.org and also have permission to push the repository.

lein deploy clojars
;; then follow prompts to enter your username, password, etc.

https://github.com/clojars/clojars-web/wiki/Pushing


If you want to test your project out locally before pushing to clojars, you can run lein install and this will install to your ~/.m2 directory (which is also the place that lein will download your clojar dependencies ... so be sure to clear this before running lein deploy clojars on your project ... otherwise after you deploy, you wont actually download it from clojars since you already have a local version from doing lein install).

jefffriesen commented 6 years ago

@gadfly361 Thanks so much for the info. And thanks for this repo!