Skip to content

Commit

Permalink
fix: disabled documentation generation (#24)
Browse files Browse the repository at this point in the history
Stop documentation to be built (since it has a bug)
  • Loading branch information
FabioPinheiro authored and mineme0110 committed Apr 30, 2024
1 parent 4ee2c4a commit 5a9d872
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,14 @@ lazy val httpUtils = crossProject(JSPlatform, JVMPlatform) // project
lazy val mediator = project
.in(file("mediator"))
.settings(publish / skip := true)
.settings(
// FIX TODO (maybe the next version of the library will hide this compilation error)
// [error] -- Error: api/target/shaded/scala-3.2.2/src_managed/main/velocity/DefaultBSONHandlers.scala:379:2
// [error] undefined: new com.github.ghik.silencer.silent # -1: TermRef(TypeRef(TermRef(TermRef(TermRef(TermRef(ThisType(TypeRef(NoPrefix,module class <root>)),object com),object github),object ghik),object silencer),silent),<init>) at readTasty
// [error] one error found
// [error] (mediator / Compile / doc) DottyDoc Compilation Failed
Compile / doc / sources := Seq.empty
)
.settings((setupTestConfig): _*)
.settings(
libraryDependencies += D.scalaDID_imp.value,
Expand Down

0 comments on commit 5a9d872

Please sign in to comment.