Skip to content

Commit

Permalink
Merge pull request #513 from kevin-lee/fix-docs-build
Browse files Browse the repository at this point in the history
Fix the broken mdoc build due to the missing "-Ymacro-annotations" in scalacOptions
  • Loading branch information
kevin-lee committed Jan 27, 2024
2 parents 18e14ca + 8f53727 commit 4b79bc3
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 197 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ def docsProject(projectName: String, path: File): Project =
.enablePlugins(MdocPlugin)
.settings(
name := projectName,
scalacOptions ~= (ops => easeScalacOptionsForDocs(ops)),
scalacOptions ~= (ops => "-Ymacro-annotations" +: easeScalacOptionsForDocs(ops)),
)

lazy val props = new {
Expand Down
Loading

0 comments on commit 4b79bc3

Please sign in to comment.