-
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
Scripts: Optimize updating render paths when developing blocks #51162
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gziolo
added
[Tool] WP Scripts
/packages/scripts
[Type] Enhancement
A suggestion for improvement.
labels
Jun 1, 2023
Size Change: -16 B (0%) Total Size: 1.39 MB
ℹ️ View Unchanged
|
gziolo
requested review from
ntwb,
nerrad,
ajitbohra and
ryanwelcher
as code owners
June 1, 2023 11:35
cbravobernal
approved these changes
Jun 2, 2023
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.
Works as expected!
artemiomorales
pushed a commit
to artemiomorales/gutenberg
that referenced
this pull request
Jun 2, 2023
…ress#51162) * Scripts: Optimize updating render paths when developing blocks * Add CHANGELOG entry to `@wordpress/scripts` * Update CHANGELOG.md
sethrubenstein
pushed a commit
to pewresearch/gutenberg
that referenced
this pull request
Jul 13, 2023
…ress#51162) * Scripts: Optimize updating render paths when developing blocks * Add CHANGELOG entry to `@wordpress/scripts` * Update CHANGELOG.md
This was referenced Jul 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What?
Follow-up for #50939.
Previously discussed in #43917 (comment).
The original issue was reported in
The issue got fixed with #50939, but the approach wasn't optimal in terms of performance.
Why?
As correctly pointed out by @luisherranz in #43917 (comment) when developing the feature:
While the fix works, we can improve the performance.
How?
The proposed fix introduces a custom webpack plugin that uses the existing utility
getRenderPropPaths
to update the list of detected PHP files in therender
field defined inblock.json
files. The idea behind it is to use thethisCompilation
webpack hook that alsoCopyWebpackPlugin
uses when copying files. This way, we can run the logic only once when changes to files on the disk are detected rather than whenever thefilter
callback gets executed for every PHP file living in the source folder.Testing Instructions
It can be tested with the testing instructions from #49790.
I tested it myself by building the custom block using:
npx wp-create-block example-dynamic --no-wp-scripts --variant=dynamic
to create a custom dynamic block.cd example-dynamic
.../node_modules/.bin/wp-scripts build
to ensure thatsrc/render.php
file gets copied to thebuild
folder:render
field fromsrc/block.json
.../node_modules/.bin/wp-scripts start
to begin development in the watch mode.render.php
file in thebuild
folder.render
field to thesrc/block.json
file.render.php
file in thebuild
folder.