Block Editor: Align the version of React with the one used in Gutenberg plugin

Gutenberg 6.5 works with react and react-dom set to v16.9.0. This change aligns both.

Props youknowriad.
Fixes #48121.




git-svn-id: https://develop.svn.wordpress.org/trunk@46289 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Grzegorz (Greg) Ziółkowski
2019-09-25 08:19:17 +00:00
parent 98067df21f
commit bad0295cc9
3 changed files with 15 additions and 16 deletions

View File

@@ -91,8 +91,8 @@ function wp_default_packages_vendor( &$scripts ) {
);
$vendor_scripts_versions = array(
'react' => '16.8.4',
'react-dom' => '16.8.4',
'react' => '16.9.0',
'react-dom' => '16.9.0',
'moment' => '2.22.2',
'lodash' => '4.17.15',
'wp-polyfill-fetch' => '3.0.0',