-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Monorepo] split gutenberg-mobile to 3 packages - bridge, editor, aztec #18509
[Monorepo] split gutenberg-mobile to 3 packages - bridge, editor, aztec #18509
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would recommend going through all package.json
files related to new packages and make sure that :
- they don't contain
devDependencies
peerDependencies
aren't outdated or too strictscripts
sections should be removed unless they need to be executed for the package- they are public for npm publishing
In addition, they pass npm run lint-pkg-json
command.
It all might turn out to be challenging :)
Now I see that #18531 addresses most of the comments included here 🙃 |
This looks good so far, let's review it again after #18508 is merged and we rebase this one onto |
7412c47
to
eb7cd47
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just rebased it ontop of feat/import-gutenberg-mobile
after #18508 was merged. This LGTM 👍
…ec (#18509) * split to 3 packages bridge, editor, aztec * rename gutenberg bridge to bridge and add @WordPress namespace
Description
This is a part of migration
gutenberg-mobile
togutenberg
repo. In this PR I splitgutenberg-mobile
to 3 packages.@wordpress/react-native-editor
- playground react-native app and bundle entrypoint@wordpress/react-native-gutenberg-bridge
- module which starts react-native inside the client app (WP-iOS/Android) (Name will be changed in the next PR to@wordpress/react-native-gutenberg-bridge
since we don't want to have a package with the name that includesgutenberg
in it)@wordpress/react-native-aztec
- react-native-aztec moduleIn this PR I also removed
yarn.lock
filesHow has this been tested?
There is nothing to test at this stage.
Types of changes
Split
gutenberg-mobile
to 3 packages.Checklist: