Skip to content

Commit 4c7e95f

Browse files
committed
Add make check-clj-doc to analyze-local
- And fix failing check on CI
1 parent 4d8e70a commit 4c7e95f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ dev:
1010
deploy:
1111
rm -rf target
1212
mvn deploy
13+
14+
check-clj-doc:
15+
clojure -T:build jar
16+
clojure -T:check-clj-doc analyze-local

deps.edn

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,7 @@
4141
org.clojure/tools.namespace {:mvn/version "1.0.0"}}}
4242

4343
:build {:deps {io.github.seancorfield/build-clj {:tag "v0.6.7" :sha "22c2d09"}}
44-
:ns-default build}}}
44+
:ns-default build}
45+
46+
:check-clj-doc {:deps {io.github.cljdoc/cljdoc-analyzer {:tag "v1.0.802" :sha "911656c5"}}
47+
:ns-default cljdoc-analyzer.deps-tool}}}

src/main/com/fulcrologic/fulcro/inspect/target_impl.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(ns com.fulcrologic.fulcro.inspect.target-impl
1+
(ns ^:no-doc com.fulcrologic.fulcro.inspect.target-impl
22
(:require
33
[clojure.core.async :as async]
44
[com.fulcrologic.devtools.common.built-in-mutations :as bi]

0 commit comments

Comments
 (0)