-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Labels
Description
Describe the Feature
I'm the maintainer for the Apple TV and Android TV RN repo (https://github.com/react-native-tvos/react-native-tvos). I'd like to implement better CLI support for Apple TV with two features:
- New command
react-native run-tvos(this can be done with the right flags torun-ios, but it would be convenient to have a separate command) - Make
react-native upgradework with thereact-native-tvosfork
Possible Implementations
I plan on implementing these, but wanted to find out your preference on the approach I should take.
For run-tvos, should I make changes to the existing platform-ios package, or do it in a separate package (which means a lot of duplicate code)?
For upgrade, it seems to me the right way is to have upgrade.ts detect that the project uses react-native-tvos and use the react-native-tvos diffs (I have already created a repo for the diffs). But if you prefer a separate command or package for this, that's ok.
TrebuhD