summaryrefslogtreecommitdiffstatshomepage
path: root/tools/webpack
diff options
context:
space:
mode:
Diffstat (limited to 'tools/webpack')
-rw-r--r--tools/webpack/blocks.js5
-rw-r--r--tools/webpack/packages.js2
2 files changed, 4 insertions, 3 deletions
diff --git a/tools/webpack/blocks.js b/tools/webpack/blocks.js
index e4af5ca6a3..dc9bcb5458 100644
--- a/tools/webpack/blocks.js
+++ b/tools/webpack/blocks.js
@@ -33,6 +33,7 @@ module.exports = function( env = { environment: 'production', watch: false, buil
'comment-edit-link',
'comment-reply-link',
'comment-template',
+ 'comments',
'comments-pagination',
'comments-pagination-next',
'comments-pagination-numbers',
@@ -53,7 +54,6 @@ module.exports = function( env = { environment: 'production', watch: false, buil
'pattern',
'post-author',
'post-author-biography',
- 'post-comments',
'post-comments-form',
'post-content',
'post-date',
@@ -89,13 +89,13 @@ module.exports = function( env = { environment: 'production', watch: false, buil
'code',
'column',
'columns',
- 'comments-query-loop',
'embed',
'freeform',
'group',
'heading',
'html',
'list',
+ 'list-item',
'media-text',
'missing',
'more',
@@ -152,6 +152,7 @@ module.exports = function( env = { environment: 'production', watch: false, buil
entry: {
'file/view': join( baseDir, `node_modules/@wordpress/block-library/build-module/file/view` ),
'navigation/view': join( baseDir, `node_modules/@wordpress/block-library/build-module/navigation/view` ),
+ 'navigation/view-modal': join( baseDir, `node_modules/@wordpress/block-library/build-module/navigation/view-modal` ),
},
output: {
devtoolNamespace: 'wp',
diff --git a/tools/webpack/packages.js b/tools/webpack/packages.js
index 29a0e0e502..100853e668 100644
--- a/tools/webpack/packages.js
+++ b/tools/webpack/packages.js
@@ -54,7 +54,7 @@ module.exports = function( env = { environment: 'production', watch: false, buil
buildTarget = buildTarget + '/wp-includes';
const WORDPRESS_NAMESPACE = '@wordpress/';
- const BUNDLED_PACKAGES = [ '@wordpress/icons', '@wordpress/interface', '@wordpress/style-engine' ];
+ const BUNDLED_PACKAGES = [ '@wordpress/icons', '@wordpress/interface' ];
const packages = Object.keys( dependencies )
.filter( ( packageName ) =>
! BUNDLED_PACKAGES.includes( packageName ) &&