-
Notifications
You must be signed in to change notification settings - Fork 463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Watch symlinked packages dirs #4047
Watch symlinked packages dirs #4047
Conversation
Some editors are using temporary files to store edits. This results in two sync change events: change + rename and two sync builds. Using setImmediate will ensure that only one build done.
We will revisit the build system change after this release, since changes to build tool can easily introduce regression bugs, thanks for the contribution |
@bobzhang Is there any place or roadmap document where we could read about the build system changes that you mentioned? We (@ Ahrefs) are having a lot of trouble with symlinked packages when working locally and we are thinking on moving to a single |
@jchavarri we will revisit this once we have rolled out 7.0.2 |
I'm also at the point where I want to migrate to single |
Joining in to the party. any update? |
Closing very old PRs. |
Adds
getDirsForRelativeSymlinkedPackages
that checks if package is a symbolic link. If yes it adds all dirs from package and it's dependencies to watched list. Works only withbsb -w -make-world
Resolves #3521
Requires recursive
.sourcedirs.json
#4043