Skip to content

Commit 28486da

Browse files
committed
build: cljdoc
1 parent 9792cbf commit 28486da

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<packaging>jar</packaging>
55
<groupId>io.homebase</groupId>
66
<artifactId>homebase-react</artifactId>
7-
<version>0.1.0</version>
7+
<version>0.1.1-SNAPSHOT</version>
88
<name>homebase-react</name>
99
<description>Use a datalog DB to manage react application state</description>
1010
<url>https://github.com/homebaseio/homebase-react</url>

src/dev/homebase/dev/example/reagent.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
(defcard-doc
1212
"# [Homebase React](https://github.com/homebaseio/homebase-react) | Reagent Examples
1313
14-
[![cljdoc badge](https://cljdoc.org/badge/io.homebase/homebase-react)](https://cljdoc.org/d/io.homebase/homebase-react/CURRENT)
14+
**[cljdoc](https://cljdoc.org/d/io.homebase/homebase-react/CURRENT)**
1515
1616
Examples
1717

src/dev/homebase/dev/macros.clj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22
{:no-doc true})
33

44
(defmacro inline-resource [resource-path]
5-
(slurp resource-path))
5+
(try
6+
(slurp resource-path)
7+
(catch Error e (print e))))
68

0 commit comments

Comments
 (0)