You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks a lot for your work on this project! I've recently started integrating the block editor into a project of mine and your work here was a great help.
Could you please share (some quick dot points will do) how you go about updating the Gutenberg packages, and what to look out for when doing this?
Then I ran into other runtime issues that I'm now working my way through, like the one below that occurs whenever a dropdown menu is opened in the editor: it crashes the editor and shows a blank screen:
View error
Thanks!
The text was updated successfully, but these errors were encountered:
Hi @mauricewijnia,
Thanks a lot for your work on this project! I've recently started integrating the block editor into a project of mine and your work here was a great help.
Could you please share (some quick dot points will do) how you go about updating the Gutenberg packages, and what to look out for when doing this?
More details
The script https://github.com/VanOns/block-editor/blob/main/versions.sh that extracts the version numbers of the packages for a local Gutenberg clone is very useful.
I was able to run that after making a slight change (see below), and installed the versions extracted.
versions.sh
changeChanged the
\d
character class to[0-9]
due to https://stackoverflow.com/a/3185498I then built the library and fixed a few issues like replacing
ReactDOM.render()
withcreateRoot()
.Then I ran into other runtime issues that I'm now working my way through, like the one below that occurs whenever a dropdown menu is opened in the editor: it crashes the editor and shows a blank screen:
View error
Thanks!
The text was updated successfully, but these errors were encountered: