;; project.clj or build.boot
[ant.design "RELEASE"]
;; deps.edn
{:deps {ant.design {:mvn/version "RELEASE"}}}
A ClojureScript library for Ant Design.
Add the following dependency in your project:
;; project.clj or build.boot
[ant.design "RELEASE"]
;; deps.edn
{:deps {ant.design {:mvn/version "RELEASE"}}}
(ns example.app
(:require [ant.design :as ant]))
(defn my-button []
[ant/button {:onClick #(js/console.log "Amazing...")}
"Click me"])
# create a new git tag (available types `minor`, `major`)
$ make patch
# push a new git tag
$ make release
$ make help
help Show help
repl Run nREPL
clean Clean
lint Run linter
build Build jar
install Install locally
init Init first version
patch Increment patch version
minor Increment minor version
major Increment major version
release Release a new version
deploy Deploy to clojars
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close