cli icon indicating copy to clipboard operation
cli copied to clipboard

Support for Yarn Plug 'n Play

Open empyrical opened this issue 6 years ago • 18 comments

This is a meta issue to keep track of the things that need to be tweaked to give RN-CLI support for Yarn Plug 'n Play. This is probably non-exhaustive, more things might be found as others are tweaked.

  • [ ] Global CLI: Support for finding react-native and react-native-local-cli when PnP is enabled (in progress: #26 )

  • [ ] react-native bundle: Support for bundling dependencies with PnP. (Metro team is working on open sourcing its PnP support: facebook/metro#308)

  • [ ] findPlugins: Plugin discovery code will need to be adapted to support PnP

  • [ ] Xcode pbxproj files all have paths hardcoded in like this:

    path = "../node_modules/react-native/React/React.xcodeproj";

    There is, as far as I know, no way to have this path be dynamic. Ideally there would be some kind of way to have Xcode call a subprocess (like node resolve-dependency.js or something) and use it as the path's prefix, but I don't think there's a way. So I think a script might need to be made to refresh these paths and keep them up to date.

    This is also relevant for user libraries and react-native link for iOS dependencies

  • [ ] Gradle scripts will need to be updated along with react-native link's Gradle output. Here's an example bit out output for react-native-webview:

    project(':react-native-webview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview/android')
    

    The path to it is hardcoded to look in node_modules. I think a new helper function could be written, that would look something like:

    npm_dependency('react-native-webview', 'android')

    Where the first argument is the name of the node module, and the second is a pathname within the node_module. If PnP isn't present, then it will simply output an old-style path to node_modules. A similar function could be made for BUCK.

  • Paths to node_modules/react-native are hardcoded in these files and will need to be updated. They could all use util/findReactNativePath, potentially.

    • [ ] local-cli/library/library.js
    • [ ] local-cli/eject/eject.js
    • [ ] local-cli/generator/templates.js
    • [ ] local-cli/link/__tests__/ios/getHeaderSearchPath.spec.js
    • [ ] local-cli/upgrade/upgrade.js
    • [ ] local-cli/util/findReactNativeScripts.js

empyrical avatar Nov 14 '18 20:11 empyrical

I saw #26 was closed. So how is this going?

oshimayoan avatar Apr 15 '19 01:04 oshimayoan

some news for PnP support?

ManAnRuck avatar Oct 07 '19 07:10 ManAnRuck

None yet, unfortunately

thymikee avatar Oct 07 '19 07:10 thymikee

Any estimates on this, since yarn 2 is now stable and officially released? It defaults to PnP.

sebastian-nowak avatar Mar 16 '20 20:03 sebastian-nowak

@arcanis @empyrical @thymikee I realize its been a couple years since this issue was created. I have been looking through the react-native code base and it is pretty clear to me that steps haven't really been taken by anyone to make this happen. I would like to start a conversation around supporting PNP for react-native, and possible solutions to make that happen. I think all the tasks @empyrical pointed out a couple years ago still apply.

There is so much tied to the existing node_module structure, I am not sure it makes sense to wholesale try and get expo itself to support pnp. Maybe step one is to provide a way for an ejected React native code base to use pnp more cleanly?

Note to anyone coming across this: I would eject before even trying to use pnp with react-native.

I have dug into this a bit and got things working with yarn berry and pnp enabled. You can see a working example here

Note: This is only working for IOS as of right now.

I ran into a lot of issues getting this setup and working but here are the things that I believe have to happen in order for it to work for IOS(this list is likely missing a few things as well as include things that don't actually need to happen, because my memory isn't perfect, and there is a lot going on here) If you pull down my repo, the readme should get things running. (you can see "foobar" getting pulled from a sibling workspace which is cool).

  • Add package.json scripts to workspace for react-native related scripts (yarn pod:install, yarn pod:degenerate, etc). This is needed because of how yarn berry works.
  • unplugs
"@react-native-community/cli": {
      "unplugged": true
    },
    "@react-native-community/cli-platform-ios": {
      "unplugged": true
    },
    "expo": {
      "unplugged": true
    },
    "expo-cli": {
      "unplugged": true
    },
    "jest-haste-map": {
      "unplugged": true
    },
    "react-native": {
      "unplugged": true
    },
    "react-native-unimodules": {
      "unplugged": true
    }

I believe you have to unplug at least the ones where pods are pulled from and are referenced from the PodFile. The PodFile doesn't seem to be able to reference files within a cached .zip.

  • modify the paths in Podfile to point at the unplugs(this isn't great since those hash's can change after a yarn install at times. Script?
  • Not sure autolinking works at all, so I manually added the one missing that I needed.
  • Add a metro.config.js as seen here. This added a pnpResolver which it was included with Metro at one point, but seems to have been removed. The code here is pretty darn close to what was included before.

PNP Enabled issues.


  • I got a chain of issues after adding pnp resolver to metro. First error was this guy . So I added a patch to metro see .patches/metro.patch in repo.
  • Second was that crypto is not a npm module, so i created a passthrough workspace(see repo) to point at react-native-crypto. (learned about resolutions after the fact, probably could just do something like "crypto: react-native-crypto" Not sure that works.)
  • Third issue was that process.version was undefined which crypto looks at from a submodule pbkdf2. Added a patch for it, but it did just get merged as well here: https://github.com/crypto-browserify/pbkdf2/pull/85#event-3312770971 it might be a better solution here to actually include process? not sure how this works by default.
  • If you checkout the .yarnrc.yaml you will see an insanely long list of packageExtensions. That it definitely not 100% accurate. Pretty sure some of those should be peerDependenicies, but they got me moving forward, and are likely needed in some form.

I ran into a million other issues, but I believe they were issues from trying to eject with pnp enabled initially.

Thoughts on any of this? If nothing comes of this, at at least there is an example of pnp working with react native on the webs.

To wrap up, IMO, yarn V2 is the future of JS/TS development. It was sort of crazy how many open and closed issues I ran into digging into this within the RN ecosystem...most of them dependency issues during buildtime, runtime, etc...all of which just sort of magically work, until it doesn't. As a community we need to start moving forward with Yarn V2, where we have a better grip of what is going on with our dependencies.

dalinarkholin avatar May 08 '20 16:05 dalinarkholin

@dalinarkholin Just wanted to say thank you. I wonder why this has been dead for so long, it's really odd to see two of the biggest FB projects totally out of sync for... going on 3 years.

Anyway, hope to see this move!

natew avatar May 16 '20 00:05 natew

@dalinarkholin thanks for that. Wanted to try your example to verify that indeed I could build of course with yarn berry and also have a look at yarn install performance because this is the main reason for me wanting to move out from yarn v1.

After this was successful , I took some time to configure yarn berry into my project and see yarn install performance. The results speak for themselves:

yarn v1

  • yarn install with no node_modules folder: 5 mins, 46 secs ✨ Done in 44.54s. ✨ Done in 301.41s.

yarn berry with PnP

  • without cached install and without unplugged files, let's call this first time install: 1 min, 46secs ➤ YN0000: Done with warnings in 1m 46s

  • without cached install files: 45 seconds ➤ YN0000: Done with warnings in 45s 587ms

  • with zero installs and cache: 4 seconds ➤ YN0000: Done with warnings in 3s 808ms

I am working on a project with huge amount of packages and dependencies and every time I want to do a fresh install it takes a lot... Heck my CI has to eat up that time as well. I think it only makes sense move towards that direction. Also I believe there are lots of us willing to do dev tasks to complete this. I would be happy to help with parts where my knowledge and expertise makes sense if we can put this down to concrete tasks.

@arcanis @empyrical @thymikee what do you guys think? Shall we give berry a chance ?

marudy avatar Dec 06 '20 16:12 marudy

@marudy we're happy with accepting any help on how to make Berry work with React Native. Even in a form of the documentation :)

thymikee avatar Dec 06 '20 17:12 thymikee

Hi @thymikee and @marudy, it's been a few months since this was last commented on. I wanted to check-in to see if there has been any progress made with regards to React Native compatibility with PnP? This could be code changes, patches, documentation, workarounds, blog posts, anything 😄

We're looking to use PnP in a monorepo that also has a React Native application and wanted to check-in before we start digging.

Thanks!

jgornick avatar Apr 13 '21 20:04 jgornick

No progress unfortunately

thymikee avatar Apr 14 '21 08:04 thymikee

whimsically shakes fist

Darn it, I'm trying to switch to the fancy new yarn to make my monorepo all nice and clean, but the fact that this isn't just "batteries included" yet is a real pain point. Anybody know what's going on with support?

ariccio avatar Jan 26 '22 21:01 ariccio

yarn berry please please please pretty please

PrimeDominus avatar Mar 08 '22 13:03 PrimeDominus

noone at facebook cares is the simple truth - we'd see progress on this if they did.

like... not even to do task planning on what needs to be done. nada... nothing.

airtonix avatar May 10 '22 05:05 airtonix

https://twitter.com/cpojer/status/1495511984330412034

On Tue, 10 May 2022 at 07:09, Zeno @.***> wrote:

noone at facebook cares is the simple truth - we'd see progress on this if they did.

— Reply to this email directly, view it on GitHub https://github.com/react-native-community/cli/issues/27#issuecomment-1121937501, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAGTCZFFZULOPW7APPXF5CTVJHVPNANCNFSM4GD2AEUA . You are receiving this because you are subscribed to this thread.Message ID: @.***>

elmpp avatar May 10 '22 09:05 elmpp

Yarn Berry currently works fine so long as you use the nodeLinker: node-modules option in your .yarnrc.yml. This allows you to check in your .yarn/cache, then yarn creates the node_modules folder when you run yarn install. Because there's no network fetching, the install step will last a few seconds at most. This way you get most of the advantages of PnP until it is fully supported. Blog Post

tj-mc avatar May 12 '22 04:05 tj-mc

I didn't see .yarn/cache in git status -u, but then I saw I was just ignoring it by following the guide too strictly. Maybe it will help someone...

RobinBobin avatar May 14 '22 18:05 RobinBobin

@tj-mc I disagree brother. The node-modules is completely broken, especially if you work with TypeScript. We have dozens of shared workspaces in our monorepo and there is no way we would revert from PNP because of lack of support in RN.

alamothe avatar Jul 15 '22 18:07 alamothe

@alamothe I haven't experienced anything odd using this in a Typescript repo in a single workspace.

tj-mc avatar Jul 16 '22 02:07 tj-mc

There hasn't been any activity on this issue in the past 3 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 7 days.

github-actions[bot] avatar Dec 02 '22 03:12 github-actions[bot]

Curious if this is going to be prioritized at some point?

michaelfaith avatar Dec 02 '22 10:12 michaelfaith

There hasn't been any activity on this issue in the past 3 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 7 days.

github-actions[bot] avatar Mar 03 '23 04:03 github-actions[bot]

Not stale 🎈

fguitton avatar Mar 03 '23 09:03 fguitton

I can't see a motivation for Meta to build this, so it seems unlikely. Since the only incompatibility is related to the existence of node modules, Yarn Berry actually works fine with RN, you just need to use nodeLinker: node-modules as I explained in this post. Does that work in your use case? Also keep in mind Yarn 1 is not deprecated and is still actively worked on. Yarn 2 is not a direct upgrade but a totally new package manager, so you can continue to use 1 indefinitely.

tj-mc avatar Mar 24 '23 01:03 tj-mc

Also keep in mind Yarn 1 is not deprecated and is still actively worked on.

Not really though. Yes, they'd probably fix that CVSS 10 rated bug, but they're generally not fixing bugs or doing any enhancements that aren't related to yarn berry. There are a couple bug fixes that have impacted my group that they've flat out said they're not going to fix in yarn 1, as they've already fixed it in berry.

Yarn Berry actually works fine with RN, you just need to use nodeLinker: node-modules

I feel like the node-modules linker option is more of a stopgap to help people transition to PNP, not to be a final destination. This was especially useful as various libraries took longer to provide support. Ultimately the goal is to end up with PNP, hence this issue.

michaelfaith avatar Mar 24 '23 08:03 michaelfaith

I feel like the node-modules linker option is more of a stopgap to help people transition to PNP, not to be a final destination.

Just to clarify: the node_modules linker in modern releases of Yarn isn't a stopgap: it's a really good implementation (so good in fact that even pnpm relies on it as a dependency), significantly improved other the one in Yarn 1 (a couple of hoisting issues were fixed, new features were added), that we don't plan to sunset.

With that being said, it's true that a significant chunk of our users prefer to use PnP (a bit more than half, according to our data), so I agree it'd be nice to see this issue solved someday.

arcanis avatar Mar 24 '23 09:03 arcanis

Good to know. I just assumed that was implemented as a means to accommodate people who weren't able to fully move to PNP yet. Thanks for clarifying. (PNP is really nice though haha)

michaelfaith avatar Mar 24 '23 09:03 michaelfaith

Does anyone here actually work at Meta and can make any kind of reliable comment on this? I think "trying to predict what Meta might or might not do about this" is not really leading anywhere. I think it is reasonable to prevent this issue from getting closed as stale and hope that Meta eventually starts hiring again and then has some excess money to spend on dev time for RN. Until then probably nothing else can be done.

levino avatar Mar 24 '23 11:03 levino

Still waiting for this. Any news?

wataruian avatar May 22 '23 13:05 wataruian

Any updates on this?

MohammadKurjieh avatar Aug 01 '23 07:08 MohammadKurjieh

Meta only cares about profit and stock price at this point, open source is not their priority.

alamothe avatar Sep 21 '23 15:09 alamothe