Liking cljdoc? Tell your friends :D

License Deploy Clojars

ant.design

A ClojureScript library for Ant Design.

Quick Start Guide

Add the following dependency in your project:

;; project.clj or build.boot
[ant.design "RELEASE"]

;; deps.edn
{:deps {ant.design {:mvn/version "RELEASE"}}}

Usage

(ns example.app
  (:require [ant.design :as ant]))

(defn my-button []
  [ant/button {:onClick #(js/console.log "Amazing...")}
    "Click me"])

Deploy

# create a new git tag (available types `minor`, `major`)
$ make patch

# push a new git tag to Github then wait for GitHub Actions
# start to deploy the new version to clojars
$ git push origin --tags

Available commands

$ 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
deploy                         Deploy to clojars

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close