Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
tools-deps: '1.10.3.1040'
- name: Cache All The Things
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.m2/repository
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ dev:
deploy:
rm -rf target
mvn deploy

check-clj-doc:
clojure -T:build jar
clojure -T:check-clj-doc analyze-local
5 changes: 4 additions & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,7 @@
org.clojure/tools.namespace {:mvn/version "1.0.0"}}}

:build {:deps {io.github.seancorfield/build-clj {:tag "v0.6.7" :sha "22c2d09"}}
:ns-default build}}}
:ns-default build}

:check-clj-doc {:deps {io.github.cljdoc/cljdoc-analyzer {:tag "v1.0.802" :sha "911656c5"}}
:ns-default cljdoc-analyzer.deps-tool}}}
2 changes: 1 addition & 1 deletion src/main/com/fulcrologic/fulcro/inspect/target_impl.cljc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns com.fulcrologic.fulcro.inspect.target-impl
(ns ^:no-doc com.fulcrologic.fulcro.inspect.target-impl
(:require
[clojure.core.async :as async]
[com.fulcrologic.devtools.common.built-in-mutations :as bi]
Expand Down
Loading