subhero24

Results 12 comments of subhero24

I created a repo [here](https://github.com/brunovandamme/symlink-test). This was just initialisation with CRA under MacOS High Sierra and then symlinking in terminal with: `cd src && ln -s ../symlink`

I am trying to share components between projects, so I would like to have these components in another directory and symlink to them from all the cra-apps where i would...

As I understand yarn workspaces uses symlinks in the node_modules directory to other locations. My understanding is that CRA does not process files from node_modules, so I would have to...

@bradfordlemley Thanks for clarifying. I am not knowledgeable enough on this topic, but I don't understand where the technical difficulties are in handling these symlinks. (I can imagine processing the...

Would you like me to create a PR for this? If so, let me know how the asterisk should be escaped.

@lukejacksonn that would be perfect!

Here is the result of the script and Activity monitor showing the node processes that are running. The pid printed to console is not in the list of the running...

Btw you can see that under v1.11 the pids increment by 2. I suspect that this has something to do with the bug, as the logged pid is always in...

It does work when invoking `node index.js` directly ![yarn-without-script](https://user-images.githubusercontent.com/1171150/48162597-cecd2200-e2dd-11e8-83cf-95edd82a0abe.png)

I was indeed filtering because i thought it would be a `node` process. Yarn 1.10 spawns only `node` processes. While 1.11 also has a `sh` besides the `node` process. ![yarn-1...