File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -98,3 +98,6 @@ docs/_spec/.jekyll-metadata
9898
9999# scaladoc related
100100scaladoc /output /
101+
102+ # only used in local development
103+ .enable_bsp_all_projects
Original file line number Diff line number Diff line change @@ -413,7 +413,10 @@ object Build {
413413 " scala2-library-tasty"
414414 )
415415
416- val enableBspAllProjects = sys.env.get(" ENABLE_BSP_ALL_PROJECTS" ).map(_.toBoolean).getOrElse(false )
416+ val enableBspAllProjects = sys.env.get(" ENABLE_BSP_ALL_PROJECTS" ).map(_.toBoolean).getOrElse{
417+ val enableBspAllProjectsFile = file(" .enable_bsp_all_projects" )
418+ enableBspAllProjectsFile.exists()
419+ }
417420
418421 // Settings used when compiling dotty with a non-bootstrapped dotty
419422 lazy val commonBootstrappedSettings = commonDottySettings ++ Seq (
You can’t perform that action at this time.
0 commit comments