Feature : Add support for building blocks in theme #512
+615
−216
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.
Description
This PR adds support for building blocks using npm commands, Blocks automatic registration and excluding blocks from registering.
Technical Details
The following commands are added for the blocks and uses wp-scripts internally.
npm run create:block
: To create a new block it accepts all the parameters that@wordpress/create-block
take.npm run build:blocks
: To generate the build files for blocks.npm run build:block-manifest
: To generate theblocks-manifest.php
fileat /assets/build/blocks/blocks-manifest.php
This will be used to register the blocks metadata collection.npm run start:blocks
: To start the dev server for blocks and will build the blocks whenever any changes are made in the block files.File structure
/assets/src/blocks/
folder. Build files for the respective blocks will be in/assets/build/blocks/
Automatic Block Registration
assets/build/blocks/
are registered automatically using PHP script.Excluding blocks
_
prefix.Documentation
docs/blocks-guide.md
file.Checklist
/docs
Screenshots
add.building.blocks.support.to.the.theme.mov
To-do
Fixes/Covers issue
#510