Konstantin Raev
Konstantin Raev
Thanks for giving it a try, @jquense. The entry point is probably here https://github.com/yarnpkg/yarn/blob/master/src/cli/commands/install.js#L477 - flattenedTopLevelPatterns only contains the top level dependencies of root package.json + a virtual dependency that...
Awesome! If you have any questions ask away On Mon, Jul 31, 2017 at 7:28 PM Burt Harris wrote: > Hi. I'm quite interested in yarn and workspaces in particular....
As a workaround you should be able to run tests like this `node ./node_modules/jest/bin/jest.js`
The core team is focused on fixing the most high priority issues right now, cases where Yarn may crash or install wrong versions of dependencies. This bug will be resolved...
Sounds reasonable, send a PR
If someone opens a new PR based on https://github.com/yarnpkg/yarn/pull/3674 ping me I'll merge it
The code is here https://github.com/yarnpkg/yarn/blob/master/src/package-linker.js#L36. I wonder if it is related to how fs.symlink is working on windows. Maybe it should check if symlink exists and points to the same...
package-linker removes symlinks form possibleExtraneous https://github.com/yarnpkg/yarn/blob/master/src/package-linker.js#L215
Well, modifying node_modules folder while the Node app is running is quite non deterministic anyway. So maybe we can't do much about it. On 9 May 2017 at 15:48, Alex...