mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 04:48:25 +01:00
Build: Enable React Fast Refresh for block development
Brings the same functionality introduced in the Gutenberg plugin with https://github.com/WordPress/gutenberg/pull/28273. In effect, it brings React Fast Refresh support to WordPress core for block development with `@wordpress/scripts`. Props walbo, antonvlasenko. See #51750, #55505. Follow-up [53135]. git-svn-id: https://develop.svn.wordpress.org/trunk@53140 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
39775c1111
commit
b726922bb9
@ -124,7 +124,7 @@ module.exports = function(grunt) {
|
|||||||
'webpack-assets': [
|
'webpack-assets': [
|
||||||
WORKING_DIR + 'wp-includes/assets/*',
|
WORKING_DIR + 'wp-includes/assets/*',
|
||||||
WORKING_DIR + 'wp-includes/css/dist/',
|
WORKING_DIR + 'wp-includes/css/dist/',
|
||||||
'!' + WORKING_DIR + 'wp-includes/assets/script-loader-packages.php'
|
'!' + WORKING_DIR + 'wp-includes/assets/script-loader-*.php'
|
||||||
],
|
],
|
||||||
dynamic: {
|
dynamic: {
|
||||||
dot: true,
|
dot: true,
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
"last 2 Opera versions"
|
"last 2 Opera versions"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@pmmmwh/react-refresh-webpack-plugin": "0.5.5",
|
||||||
"@wordpress/babel-preset-default": "6.8.0",
|
"@wordpress/babel-preset-default": "6.8.0",
|
||||||
"@wordpress/dependency-extraction-webpack-plugin": "3.4.1",
|
"@wordpress/dependency-extraction-webpack-plugin": "3.4.1",
|
||||||
"@wordpress/e2e-test-utils": "5.4.10",
|
"@wordpress/e2e-test-utils": "5.4.10",
|
||||||
@ -62,6 +63,7 @@
|
|||||||
"matchdep": "~2.0.0",
|
"matchdep": "~2.0.0",
|
||||||
"prettier": "npm:wp-prettier@2.0.5",
|
"prettier": "npm:wp-prettier@2.0.5",
|
||||||
"qunit": "~2.18.1",
|
"qunit": "~2.18.1",
|
||||||
|
"react-refresh": "0.10.0",
|
||||||
"sass": "^1.50.0",
|
"sass": "^1.50.0",
|
||||||
"sinon": "~13.0.1",
|
"sinon": "~13.0.1",
|
||||||
"sinon-test": "~3.1.3",
|
"sinon-test": "~3.1.3",
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
<?php return array('dependencies' => array('wp-react-refresh-runtime'), 'version' => '8151afc94a5ebc73b7a8229f0d7ee352');
|
@ -0,0 +1 @@
|
|||||||
|
<?php return array('dependencies' => array(), 'version' => '4fb86f241c3b2d9d9e0411b507079823');
|
@ -214,6 +214,45 @@ function wp_get_script_polyfill( $scripts, $tests ) {
|
|||||||
return $polyfill;
|
return $polyfill;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers development scripts that integrate with `@wordpress/scripts`.
|
||||||
|
*
|
||||||
|
* @see https://github.com/WordPress/gutenberg/tree/trunk/packages/scripts#start
|
||||||
|
*
|
||||||
|
* @since 6.0.0
|
||||||
|
*
|
||||||
|
* @param WP_Scripts $scripts WP_Scripts object.
|
||||||
|
*/
|
||||||
|
function wp_register_development_scripts( $scripts ) {
|
||||||
|
if (
|
||||||
|
! defined( 'SCRIPT_DEBUG' ) || ! SCRIPT_DEBUG
|
||||||
|
|| empty( $scripts->registered['react'] )
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$development_scripts = array(
|
||||||
|
'react-refresh-entry',
|
||||||
|
'react-refresh-runtime',
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach ( $development_scripts as $script_name ) {
|
||||||
|
$assets = include ABSPATH . WPINC . '/assets/script-loader-' . $script_name . '.php';
|
||||||
|
if ( ! is_array( $assets ) ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$scripts->add(
|
||||||
|
'wp-' . $script_name,
|
||||||
|
'/wp-includes/js/dist/development/' . $script_name . '.js',
|
||||||
|
$assets['dependencies'],
|
||||||
|
$assets['version']
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// See https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/docs/TROUBLESHOOTING.md#externalising-react.
|
||||||
|
$scripts->registered['react']->deps[] = 'wp-react-refresh-entry';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers all the WordPress packages scripts that are in the standardized
|
* Registers all the WordPress packages scripts that are in the standardized
|
||||||
* `js/dist/` location.
|
* `js/dist/` location.
|
||||||
@ -560,6 +599,7 @@ function wp_tinymce_inline_scripts() {
|
|||||||
*/
|
*/
|
||||||
function wp_default_packages( $scripts ) {
|
function wp_default_packages( $scripts ) {
|
||||||
wp_default_packages_vendor( $scripts );
|
wp_default_packages_vendor( $scripts );
|
||||||
|
wp_register_development_scripts( $scripts );
|
||||||
wp_register_tinymce_scripts( $scripts );
|
wp_register_tinymce_scripts( $scripts );
|
||||||
wp_default_packages_scripts( $scripts );
|
wp_default_packages_scripts( $scripts );
|
||||||
|
|
||||||
|
61
tools/webpack/development.js
Normal file
61
tools/webpack/development.js
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
/**
|
||||||
|
* External dependencies
|
||||||
|
*/
|
||||||
|
const { join } = require( 'path' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WordPress dependencies
|
||||||
|
*/
|
||||||
|
const DependencyExtractionWebpackPlugin = require( '@wordpress/dependency-extraction-webpack-plugin' );
|
||||||
|
|
||||||
|
const baseDir = join( __dirname, '../../' );
|
||||||
|
|
||||||
|
module.exports = function( env = { environment: 'production', buildTarget: false } ) {
|
||||||
|
const mode = env.environment;
|
||||||
|
const suffix = mode === 'production' ? '.min' : '';
|
||||||
|
let buildTarget = env.buildTarget ? env.buildTarget : ( mode === 'production' ? 'build' : 'src' );
|
||||||
|
buildTarget = buildTarget + '/wp-includes';
|
||||||
|
|
||||||
|
const sharedConfig = {
|
||||||
|
mode: 'development',
|
||||||
|
target: 'browserslist',
|
||||||
|
output: {
|
||||||
|
filename: `[name]${ suffix }.js`,
|
||||||
|
path: join( baseDir, `${ buildTarget }/js/dist/development` ),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
// See https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/docs/TROUBLESHOOTING.md#externalising-react.
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
...sharedConfig,
|
||||||
|
name: 'react-refresh-entry',
|
||||||
|
entry: {
|
||||||
|
'react-refresh-entry':
|
||||||
|
'@pmmmwh/react-refresh-webpack-plugin/client/ReactRefreshEntry.js',
|
||||||
|
},
|
||||||
|
plugins: [ new DependencyExtractionWebpackPlugin( {
|
||||||
|
outputFilename: '../../../assets/script-loader-[name].php',
|
||||||
|
} ) ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
...sharedConfig,
|
||||||
|
name: 'react-refresh-runtime',
|
||||||
|
entry: {
|
||||||
|
'react-refresh-runtime': {
|
||||||
|
import: 'react-refresh/runtime.js',
|
||||||
|
library: {
|
||||||
|
name: 'ReactRefreshRuntime',
|
||||||
|
type: 'window',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
new DependencyExtractionWebpackPlugin( {
|
||||||
|
useDefaults: false,
|
||||||
|
outputFilename: '../../../assets/script-loader-[name].php'
|
||||||
|
} ),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
};
|
@ -1,4 +1,5 @@
|
|||||||
const blocksConfig = require( './tools/webpack/blocks' );
|
const blocksConfig = require( './tools/webpack/blocks' );
|
||||||
|
const developmentConfig = require( './tools/webpack/development' );
|
||||||
const mediaConfig = require( './tools/webpack/media' );
|
const mediaConfig = require( './tools/webpack/media' );
|
||||||
const packagesConfig = require( './tools/webpack/packages' );
|
const packagesConfig = require( './tools/webpack/packages' );
|
||||||
|
|
||||||
@ -13,6 +14,7 @@ module.exports = function( env = { environment: "production", watch: false, buil
|
|||||||
|
|
||||||
const config = [
|
const config = [
|
||||||
blocksConfig( env ),
|
blocksConfig( env ),
|
||||||
|
...developmentConfig( env ),
|
||||||
mediaConfig( env ),
|
mediaConfig( env ),
|
||||||
packagesConfig( env ),
|
packagesConfig( env ),
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user