We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0702af8 commit 39d2603Copy full SHA for 39d2603
importer-portable/src/main/scala/org/scalablytyped/converter/internal/importer/Phase3Compile.scala
@@ -106,6 +106,8 @@ class Phase3Compile(
106
if (existing.all.values.forall(files.exists)) {
107
logger.warn(s"Using cached build $jarFile")
108
PhaseRes.Ok(PublishedSbtProject(sbtProject)(compilerPaths.classesDir, existing, None))
109
+ } else if (allFilesProperVersion.sourcesDir.size > 5500 && versions.scala.is3) { // todo
110
+ PhaseRes.Failure(Map(source -> Right("too many files")))
111
} else {
112
113
files.deleteAll(compilerPaths.classesDir)
0 commit comments