Skip to content

Commit

Permalink
Merge pull request #234 from nberger/fix-codox-source-uri
Browse files Browse the repository at this point in the history
Codox: Fix 'view source' links to point to cljx file in src dir for the corresponding version tag
  • Loading branch information
ptaoussanis authored Apr 15, 2018
2 parents 22603b5 + 4c5b308 commit 5120eb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@

:codox
{: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
{"test-all" ["do" "clean," "cljx" "once,"
Expand Down

0 comments on commit 5120eb1

Please sign in to comment.