Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,8 @@ object Build {

val sources =
unmanagedSources.in(Compile, compile).value ++
unmanagedSources.in(`dotty-compiler`, Compile).value
unmanagedSources.in(`dotty-compiler`, Compile).value ++
unmanagedSources.in(`dotty-library`, Compile).value
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should probably be dotty-library-bootstrapped, otherwise you'll misss the Scala 3-only files

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will do

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Buy adding dotty-library-bootstrapped (dc5a442) sbt crashes with a stack overflow.

http://dotty-ci.epfl.ch/lampepfl/dotty/8824/4

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I pushed a fix, but genDocs now fails because it doesn't know how to handle MatchType, I'll let someone else fix that :).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll work on the MatchType

val args = Seq(
"-siteroot", "docs",
"-project", "Dotty",
Expand Down