Replies: 2 comments 5 replies
-
All good on my end. Now that we have Happy to hear if there are concerns |
Beta Was this translation helpful? Give feedback.
-
In general I am supportive of nightlies using nightly versions, and stable versions using stable versions. The That being said, I think it will introduce an extra step/complication on our end. React Native macOS re-uses most of the most of the mono repo packages from React Native (with the exception of I think React Native macOS publishing nightlies for all mono repo packages may be possible, and perhaps a better long term solution to ensure that our code is actually in sync in between itself. A second question becomes whether we should do the same for stable releases, or just re-use the React Native Core ones as we currently do. I don't know I have a good answer there. I would probably want to keep the same system for both nightlies and stable releases for simplicities' sake. |
Beta Was this translation helpful? Give feedback.
-
Problem
Today's release process involves releasing react-native and all the monorepo dependencies. Even though they are independently versioned, in reality, they all should be released in lock-step.
When we cut a release today, say for 0.74, we publish all the monorepo package at version 0.75 from main and point react-native on main to use these. We used to do this because we did not publish nightly monorepo packages and needed these versions for nightly react-native.
Now that we do publish monorepo nightlies, we no longer need this step. It also causes some weirdness because we have monorepo packages with 0.75.0 when there is no 0.75 react-native.
Proposal
main
Questions
nightly
versions of monorepo packages instead or perhaps latest stable version?react-native
repo?Beta Was this translation helpful? Give feedback.
All reactions