-
-
Notifications
You must be signed in to change notification settings - Fork 388
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Configuration for how much of the project to build #3873
Comments
Would it be possible to have sort of incremental option where HLS first build |
I'm unsure if that makes sense based on how HLS works 🤔 |
I think it already is, HLS keeps files of interest (which are open-files) in shake. And doing build related to FOI. |
I think that's just describing the |
Just to add a few more thoughts: while in some ways "load everything in the project" is probably the most intuitive thing for users, I think we need it to be configurable because for people (often in industry) with very large projects this may just eat all their memory. |
At the moment, HLS builds only the files that are open in the editor by default (and their dependencies). We have the
checkProject
option, which instead builds all the files in the current component.Especially once proper multi-component support is finished, it seems to me that there are actually several levels of aggressiveness that you might want.
So I wonder if we should replace
checkProject
with a new option (buildAggressiveness
?) with four alternatives:open-files
current-component
current-package
all-packages
The text was updated successfully, but these errors were encountered: