mirror of https://github.com/status-im/timbre.git
[#234] [Docs] Fix codox source-uri to play better with cljx files (@nberger)
cljx files are taken from the compiled file in target/classes for codox, but the 'view source' links to those files should point to the original cljx file in the src dir
This commit is contained in:
parent
22603b5134
commit
67f68c8e47
|
@ -81,7 +81,9 @@
|
||||||
|
|
||||||
:codox
|
:codox
|
||||||
{:language :clojure
|
{:language :clojure
|
||||||
:source-uri "https://github.com/ptaoussanis/timbre/blob/master/{filepath}#L{line}"}
|
:source-uri
|
||||||
|
{#"target/classes" "https://github.com/ptaoussanis/timbre/blob/v{version}/src/{classpath}x#L{line}"
|
||||||
|
#".*" "https://github.com/ptaoussanis/timbre/blob/v{version}/{filepath}#L{line}"}}
|
||||||
|
|
||||||
:aliases
|
:aliases
|
||||||
{"test-all" ["do" "clean," "cljx" "once,"
|
{"test-all" ["do" "clean," "cljx" "once,"
|
||||||
|
|
Loading…
Reference in New Issue