-
Notifications
You must be signed in to change notification settings - Fork 150
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
bin symlink goes to .yalc instead of node_modules copy #156
Comments
Sorry, I'm not following. Try to explain the steps you make to get the issue, or maybe there could be a repro example. |
|
Right. There seems not need bin sysmlinks are created while |
What bin file? Where it is located? Actually, I'm a little bit confused with this thing with .bin scripts, which was added but a contributor's PR. I generally never use linking and never run into those issue, cause I generally use |
I used
In the package where run |
I mean is it related to this code? Do you have the stack trace? |
Yep seems it would be! |
I've found in this situation where you are exclusively working on some One reason I say this is that I found yalc was not installing |
I'm working on a package that has a generated aspect.
It has a CLI to run the generation.
When generation runs, the package expects to find itself within node_modules.
The problem is that the
node_modules/.bin
file symlinks (it seems) to the.yalc
location, rather than thenode_modules/...
location.In turn this breaks my current case since the generated library parts are going into the wrong directory now:
In the above
.yalc
should benode_modules
.The text was updated successfully, but these errors were encountered: