2018-12-13 16:25:37 +01:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
const LiveReloadPlugin = require( 'webpack-livereload-plugin' );
|
|
|
|
const CopyWebpackPlugin = require( 'copy-webpack-plugin' );
|
|
|
|
const postcss = require( 'postcss' );
|
|
|
|
const UglifyJS = require( 'uglify-js' );
|
|
|
|
|
|
|
|
const { join, basename } = require( 'path' );
|
|
|
|
const { get } = require( 'lodash' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WordPress dependencies
|
|
|
|
*/
|
|
|
|
const CustomTemplatedPathPlugin = require( '@wordpress/custom-templated-path-webpack-plugin' );
|
|
|
|
const LibraryExportDefaultPlugin = require( '@wordpress/library-export-default-webpack-plugin' );
|
|
|
|
|
|
|
|
const baseDir = join( __dirname, '../../' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a string, returns a new string with dash separators converedd to
|
|
|
|
* camel-case equivalent. This is not as aggressive as `_.camelCase` in
|
|
|
|
* converting to uppercase, where Lodash will convert letters following
|
|
|
|
* numbers.
|
|
|
|
*
|
|
|
|
* @param {string} string Input dash-delimited string.
|
|
|
|
*
|
|
|
|
* @return {string} Camel-cased string.
|
|
|
|
*/
|
|
|
|
function camelCaseDash( string ) {
|
|
|
|
return string.replace(
|
|
|
|
/-([a-z])/g,
|
|
|
|
( match, letter ) => letter.toUpperCase()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps vendors to copy commands for the CopyWebpackPlugin.
|
|
|
|
*
|
2018-12-14 05:10:26 +01:00
|
|
|
* @param {Object} vendors Vendors to include in the vendor folder.
|
|
|
|
* @param {string} buildTarget The folder in which to build the packages.
|
2018-12-13 16:25:37 +01:00
|
|
|
*
|
|
|
|
* @return {Object[]} Copy object suitable for the CopyWebpackPlugin.
|
|
|
|
*/
|
2018-12-14 05:10:26 +01:00
|
|
|
function mapVendorCopies( vendors, buildTarget ) {
|
2018-12-13 16:25:37 +01:00
|
|
|
return Object.keys( vendors ).map( ( filename ) => ( {
|
|
|
|
from: join( baseDir, `node_modules/${ vendors[ filename ] }` ),
|
2018-12-14 05:10:26 +01:00
|
|
|
to: join( baseDir, `${ buildTarget }/js/dist/vendor/${ filename }` ),
|
2018-12-13 16:25:37 +01:00
|
|
|
} ) );
|
|
|
|
}
|
|
|
|
|
2018-12-24 14:28:22 +01:00
|
|
|
module.exports = function( env = { environment: 'production', watch: false, buildTarget: false } ) {
|
2018-12-13 16:25:37 +01:00
|
|
|
const mode = env.environment;
|
2018-12-14 05:10:26 +01:00
|
|
|
const suffix = mode === 'production' ? '.min' : '';
|
2018-12-24 14:28:22 +01:00
|
|
|
let buildTarget = env.buildTarget ? env.buildTarget : ( mode === 'production' ? 'build' : 'src' );
|
|
|
|
buildTarget = buildTarget + '/wp-includes';
|
2018-12-13 16:25:37 +01:00
|
|
|
|
|
|
|
const packages = [
|
|
|
|
'api-fetch',
|
|
|
|
'a11y',
|
2018-12-17 05:50:48 +01:00
|
|
|
'annotations',
|
2018-12-13 16:25:37 +01:00
|
|
|
'autop',
|
|
|
|
'blob',
|
|
|
|
'blocks',
|
2019-03-07 10:08:38 +01:00
|
|
|
'block-editor',
|
2018-12-13 16:25:37 +01:00
|
|
|
'block-library',
|
|
|
|
'block-serialization-default-parser',
|
|
|
|
'components',
|
|
|
|
'compose',
|
|
|
|
'core-data',
|
|
|
|
'data',
|
|
|
|
'date',
|
|
|
|
'deprecated',
|
|
|
|
'dom',
|
|
|
|
'dom-ready',
|
|
|
|
'edit-post',
|
|
|
|
'editor',
|
|
|
|
'element',
|
|
|
|
'escape-html',
|
2018-12-14 11:53:17 +01:00
|
|
|
'format-library',
|
2018-12-13 16:25:37 +01:00
|
|
|
'hooks',
|
|
|
|
'html-entities',
|
|
|
|
'i18n',
|
|
|
|
'is-shallow-equal',
|
|
|
|
'keycodes',
|
|
|
|
'list-reusable-blocks',
|
2018-12-14 11:53:17 +01:00
|
|
|
'notices',
|
2018-12-13 16:25:37 +01:00
|
|
|
'nux',
|
|
|
|
'plugins',
|
2019-03-07 10:08:38 +01:00
|
|
|
'priority-queue',
|
2018-12-13 16:25:37 +01:00
|
|
|
'redux-routine',
|
|
|
|
'rich-text',
|
|
|
|
'shortcode',
|
|
|
|
'token-list',
|
|
|
|
'url',
|
|
|
|
'viewport',
|
|
|
|
'wordcount',
|
|
|
|
];
|
|
|
|
|
|
|
|
const vendors = {
|
|
|
|
'lodash.js': 'lodash/lodash.js',
|
2018-12-17 05:50:48 +01:00
|
|
|
'wp-polyfill.js': '@babel/polyfill/dist/polyfill.js',
|
2018-12-13 16:25:37 +01:00
|
|
|
'wp-polyfill-fetch.js': 'whatwg-fetch/dist/fetch.umd.js',
|
|
|
|
'wp-polyfill-element-closest.js': 'element-closest/element-closest.js',
|
|
|
|
'wp-polyfill-node-contains.js': 'polyfill-library/polyfills/Node/prototype/contains/polyfill.js',
|
|
|
|
'wp-polyfill-formdata.js': 'formdata-polyfill/FormData.js',
|
|
|
|
'moment.js': 'moment/moment.js',
|
|
|
|
'react.js': 'react/umd/react.development.js',
|
|
|
|
'react-dom.js': 'react-dom/umd/react-dom.development.js',
|
|
|
|
};
|
|
|
|
|
|
|
|
const minifiedVendors = {
|
|
|
|
'lodash.min.js': 'lodash/lodash.min.js',
|
2018-12-17 05:50:48 +01:00
|
|
|
'wp-polyfill.min.js': '@babel/polyfill/dist/polyfill.min.js',
|
2018-12-13 16:25:37 +01:00
|
|
|
'wp-polyfill-formdata.min.js': 'formdata-polyfill/formdata.min.js',
|
|
|
|
'moment.min.js': 'moment/min/moment.min.js',
|
|
|
|
'react.min.js': 'react/umd/react.production.min.js',
|
|
|
|
'react-dom.min.js': 'react-dom/umd/react-dom.production.min.js',
|
|
|
|
};
|
|
|
|
|
|
|
|
const minifyVendors = {
|
|
|
|
'wp-polyfill-fetch.min.js': 'whatwg-fetch/dist/fetch.umd.js',
|
|
|
|
'wp-polyfill-element-closest.min.js': 'element-closest/element-closest.js',
|
|
|
|
'wp-polyfill-node-contains.min.js': 'polyfill-library/polyfills/Node/prototype/contains/polyfill.js',
|
|
|
|
};
|
|
|
|
|
2018-12-13 18:39:59 +01:00
|
|
|
const phpFiles = {
|
2018-12-17 05:50:48 +01:00
|
|
|
'block-serialization-default-parser/parser.php': 'wp-includes/class-wp-block-parser.php',
|
2018-12-13 19:11:10 +01:00
|
|
|
'block-library/src/archives/index.php': 'wp-includes/blocks/archives.php',
|
|
|
|
'block-library/src/block/index.php': 'wp-includes/blocks/block.php',
|
2019-03-07 10:08:38 +01:00
|
|
|
'block-library/src/calendar/index.php': 'wp-includes/blocks/calendar.php',
|
2018-12-13 19:11:10 +01:00
|
|
|
'block-library/src/categories/index.php': 'wp-includes/blocks/categories.php',
|
|
|
|
'block-library/src/latest-comments/index.php': 'wp-includes/blocks/latest-comments.php',
|
|
|
|
'block-library/src/latest-posts/index.php': 'wp-includes/blocks/latest-posts.php',
|
2019-03-07 10:08:38 +01:00
|
|
|
'block-library/src/rss/index.php': 'wp-includes/blocks/rss.php',
|
|
|
|
'block-library/src/search/index.php': 'wp-includes/blocks/search.php',
|
2018-12-13 19:11:10 +01:00
|
|
|
'block-library/src/shortcode/index.php': 'wp-includes/blocks/shortcode.php',
|
2019-03-07 10:08:38 +01:00
|
|
|
'block-library/src/tag-cloud/index.php': 'wp-includes/blocks/tag-cloud.php',
|
2018-12-13 18:39:59 +01:00
|
|
|
};
|
|
|
|
|
2018-12-13 16:25:37 +01:00
|
|
|
const externals = {
|
|
|
|
react: 'React',
|
|
|
|
'react-dom': 'ReactDOM',
|
|
|
|
tinymce: 'tinymce',
|
|
|
|
moment: 'moment',
|
|
|
|
jquery: 'jQuery',
|
|
|
|
lodash: 'lodash',
|
|
|
|
'lodash-es': 'lodash',
|
|
|
|
};
|
|
|
|
|
|
|
|
packages.forEach( ( name ) => {
|
|
|
|
externals[ `@wordpress/${ name }` ] = {
|
|
|
|
this: [ 'wp', camelCaseDash( name ) ],
|
|
|
|
};
|
|
|
|
} );
|
|
|
|
|
2018-12-14 05:10:26 +01:00
|
|
|
const developmentCopies = mapVendorCopies( vendors, buildTarget );
|
|
|
|
const minifiedCopies = mapVendorCopies( minifiedVendors, buildTarget );
|
|
|
|
const minifyCopies = mapVendorCopies( minifyVendors, buildTarget ).map( ( copyCommand ) => {
|
2018-12-13 16:25:37 +01:00
|
|
|
return {
|
|
|
|
...copyCommand,
|
|
|
|
transform: ( content ) => {
|
|
|
|
return UglifyJS.minify( content.toString() ).code;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
} );
|
|
|
|
|
|
|
|
let vendorCopies = mode === "development" ? developmentCopies : [ ...minifiedCopies, ...minifyCopies ];
|
|
|
|
|
|
|
|
let cssCopies = packages.map( ( packageName ) => ( {
|
|
|
|
from: join( baseDir, `node_modules/@wordpress/${ packageName }/build-style/*.css` ),
|
2018-12-14 05:10:26 +01:00
|
|
|
to: join( baseDir, `${ buildTarget }/css/dist/${ packageName }/` ),
|
2018-12-13 16:25:37 +01:00
|
|
|
flatten: true,
|
|
|
|
transform: ( content ) => {
|
2018-12-24 14:28:22 +01:00
|
|
|
if ( mode === 'production' ) {
|
2018-12-13 16:25:37 +01:00
|
|
|
return postcss( [
|
|
|
|
require( 'cssnano' )( {
|
|
|
|
preset: 'default',
|
|
|
|
} ),
|
|
|
|
] )
|
|
|
|
.process( content, { from: 'src/app.css', to: 'dest/app.css' } )
|
|
|
|
.then( ( result ) => result.css );
|
|
|
|
}
|
|
|
|
|
|
|
|
return content;
|
2018-12-24 14:28:22 +01:00
|
|
|
},
|
|
|
|
transformPath: ( targetPath, sourcePath ) => {
|
|
|
|
if ( mode === 'production' ) {
|
|
|
|
return targetPath.replace( /\.css$/, '.min.css' );
|
|
|
|
}
|
|
|
|
|
|
|
|
return targetPath;
|
2018-12-13 16:25:37 +01:00
|
|
|
}
|
|
|
|
} ) );
|
|
|
|
|
2018-12-13 18:39:59 +01:00
|
|
|
const phpCopies = Object.keys( phpFiles ).map( ( filename ) => ( {
|
|
|
|
from: join( baseDir, `node_modules/@wordpress/${ filename }` ),
|
|
|
|
to: join( baseDir, `src/${ phpFiles[ filename ] }` ),
|
|
|
|
} ) );
|
|
|
|
|
2018-12-13 16:25:37 +01:00
|
|
|
const config = {
|
|
|
|
mode,
|
|
|
|
|
|
|
|
entry: packages.reduce( ( memo, packageName ) => {
|
|
|
|
const name = camelCaseDash( packageName );
|
|
|
|
memo[ name ] = join( baseDir, `node_modules/@wordpress/${ packageName }` );
|
|
|
|
return memo;
|
|
|
|
}, {} ),
|
|
|
|
output: {
|
|
|
|
filename: `[basename]${ suffix }.js`,
|
2018-12-14 05:10:26 +01:00
|
|
|
path: join( baseDir, `${ buildTarget }/js/dist` ),
|
2018-12-13 16:25:37 +01:00
|
|
|
library: {
|
|
|
|
root: [ 'wp', '[name]' ]
|
|
|
|
},
|
|
|
|
libraryTarget: 'this',
|
|
|
|
},
|
|
|
|
externals,
|
|
|
|
resolve: {
|
|
|
|
modules: [
|
|
|
|
baseDir,
|
|
|
|
'node_modules',
|
|
|
|
],
|
|
|
|
alias: {
|
|
|
|
'lodash-es': 'lodash',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
use: [ 'source-map-loader' ],
|
|
|
|
enforce: 'pre',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new LibraryExportDefaultPlugin( [
|
|
|
|
'api-fetch',
|
|
|
|
'deprecated',
|
|
|
|
'dom-ready',
|
|
|
|
'redux-routine',
|
2019-03-21 13:46:11 +01:00
|
|
|
'shortcode',
|
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
git-svn-id: https://develop.svn.wordpress.org/trunk@44262 602fd350-edb4-49c9-b593-d223f7449a82
2018-12-17 16:35:21 +01:00
|
|
|
'token-list',
|
2018-12-13 16:25:37 +01:00
|
|
|
].map( camelCaseDash ) ),
|
|
|
|
new CustomTemplatedPathPlugin( {
|
|
|
|
basename( path, data ) {
|
|
|
|
let rawRequest;
|
|
|
|
|
|
|
|
const entryModule = get( data, [ 'chunk', 'entryModule' ], {} );
|
|
|
|
switch ( entryModule.type ) {
|
|
|
|
case 'javascript/auto':
|
|
|
|
rawRequest = entryModule.rawRequest;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'javascript/esm':
|
|
|
|
rawRequest = entryModule.rootModule.rawRequest;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( rawRequest ) {
|
|
|
|
return basename( rawRequest );
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
},
|
|
|
|
} ),
|
|
|
|
new CopyWebpackPlugin(
|
|
|
|
[
|
|
|
|
...vendorCopies,
|
|
|
|
...cssCopies,
|
2018-12-13 18:39:59 +01:00
|
|
|
...phpCopies,
|
2018-12-13 16:25:37 +01:00
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
stats: {
|
|
|
|
children: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: env.watch,
|
|
|
|
};
|
|
|
|
|
|
|
|
if ( config.mode !== 'production' ) {
|
|
|
|
config.devtool = process.env.SOURCEMAP || 'source-map';
|
|
|
|
}
|
|
|
|
|
2018-12-24 14:28:22 +01:00
|
|
|
if ( mode === 'development' && env.buildTarget === 'build/' ) {
|
2018-12-18 04:13:58 +01:00
|
|
|
delete config.devtool;
|
|
|
|
config.mode = 'production';
|
|
|
|
config.optimization = {
|
|
|
|
minimize: false
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-13 16:25:37 +01:00
|
|
|
if ( config.mode === 'development' ) {
|
|
|
|
config.plugins.push( new LiveReloadPlugin( { port: process.env.WORDPRESS_LIVE_RELOAD_PORT || 35729 } ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
};
|