Are `yarn link` and `npm link` interoperable?

Viewed 263

I know there are subtle differences between yarn and npm. Now I have a library managed with yarn and an app managed with npm.

Should it work without issues, if I create a linked pkg in my lib directory via yarn and apply it via npm in my other directory? Or should I expect issues with this setup? If yes, which issues might pop up and how could I avoid them (except converting both projects to the same manager)

~/the-lib$ yarn link 
~/app$ npm link @the/lib
0 Answers
Related