You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by line endings that don't work on other platforms. I assume you are using Windows and this is the problem it is causing:
on Linux:
and on Mac:
Just forking it to my account and using it from there, ie: yarn add -D https://github.com/emahuni/symlinked fixed the problem because Github removed DOS line endings \r\n. However, the correct solution would be to let the destination decide the line endings to use and by stripping DOS line endings, then publish the package with a new version in npm.
This is caused by line endings that don't work on other platforms. I assume you are using Windows and this is the problem it is causing:
on Linux:
and on Mac:
Just forking it to my account and using it from there, ie:
yarn add -D https://github.com/emahuni/symlinked
fixed the problem because Github removed DOS line endings\r\n
. However, the correct solution would be to let the destination decide the line endings to use and by stripping DOS line endings, then publish the package with a new version in npm.see https://stackoverflow.com/a/67870789/1673161 and https://stackoverflow.com/a/58558771/1673161 for solution.
The text was updated successfully, but these errors were encountered: