How to Publish CLJSJS Jars to Clojars
I’ve been doing a lot of work in Clojurescript lately, and the time finally came to pull in my first vanilla Javascript dependency. The default way to do this seems to be the CLJSJS project. CLJSJS publishes many Javascript packages in a form that you can consume from a Clojure project. For projects like React, you’ll find the latest versions of the JS libraries, packaged up and ready to go. For less active libraries like bignumber.js you might have to go bump a version and open up a pull request against CLJSJS’s packages repository… or maybe package and add the library from scratch, as I did recently with Complex.js. ...