Skip to content

Latest commit

 

History

History
49 lines (23 loc) · 725 Bytes

Deploy.md

File metadata and controls

49 lines (23 loc) · 725 Bytes

How to deploy

Before commit:

lein clean && lein eftest

Then let's see if the linter notices something.

lein eastwood

Then, let's format sources:

lein cljfmt check
lein cljfmt fix

And commit with a message "Fixing #XX - Description"

Do not forget to edit the Changelog.

Pushing to Clojars

First advance the version in project.clj. Make sure that CHANGELOG.md is up to date.

Then create a lightweight tag and push it

git tag v0.1.18
git push origin v0.1.18

Then check your Clojars credentials and push:

lein deploy clojars
Username: l3nz

Pushing documentation

Change the documentation linkin README.md. Then click on it.

ClojureScript

Unit tests:

lein cljsbuild test unit-tests