2018-09-26 14:23:55 +00:00
|
|
|
/** @format */
|
2018-10-30 18:57:48 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2019-01-15 10:55:54 +00:00
|
|
|
const MiniCssExtractPlugin = require( 'mini-css-extract-plugin' );
|
2018-11-06 21:53:22 +00:00
|
|
|
const { get } = require( 'lodash' );
|
|
|
|
const path = require( 'path' );
|
2018-11-15 18:16:23 +00:00
|
|
|
const CopyWebpackPlugin = require( 'copy-webpack-plugin' );
|
2019-02-12 20:02:02 +00:00
|
|
|
const { DefinePlugin } = require( 'webpack' );
|
2018-11-06 21:53:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* WordPress dependencies
|
|
|
|
*/
|
|
|
|
const CustomTemplatedPathPlugin = require( '@wordpress/custom-templated-path-webpack-plugin' );
|
|
|
|
|
2018-07-23 20:14:40 +00:00
|
|
|
const NODE_ENV = process.env.NODE_ENV || 'development';
|
2018-04-17 21:38:56 +00:00
|
|
|
|
2019-02-12 20:02:02 +00:00
|
|
|
// @todo Add a `beta` phase and build process so that we can separate final .org versions from beta GitHub versions.
|
|
|
|
let WC_ADMIN_PHASE = process.env.WC_ADMIN_PHASE || 'core';
|
|
|
|
if ( [ 'development', 'plugin', 'core' ].indexOf( WC_ADMIN_PHASE ) === -1 ) {
|
|
|
|
WC_ADMIN_PHASE = 'core';
|
|
|
|
}
|
|
|
|
const WC_ADMIN_CONFIG = require( path.join( __dirname, 'config', WC_ADMIN_PHASE + '.json' ) );
|
|
|
|
|
2018-04-17 21:38:56 +00:00
|
|
|
const externals = {
|
2018-08-21 19:02:49 +00:00
|
|
|
'@wordpress/api-fetch': { this: [ 'wp', 'apiFetch' ] },
|
2018-07-23 20:14:40 +00:00
|
|
|
'@wordpress/blocks': { this: [ 'wp', 'blocks' ] },
|
|
|
|
'@wordpress/components': { this: [ 'wp', 'components' ] },
|
|
|
|
'@wordpress/compose': { this: [ 'wp', 'compose' ] },
|
|
|
|
'@wordpress/data': { this: [ 'wp', 'data' ] },
|
|
|
|
'@wordpress/editor': { this: [ 'wp', 'editor' ] },
|
|
|
|
'@wordpress/element': { this: [ 'wp', 'element' ] },
|
|
|
|
'@wordpress/hooks': { this: [ 'wp', 'hooks' ] },
|
|
|
|
'@wordpress/html-entities': { this: [ 'wp', 'htmlEntities' ] },
|
|
|
|
'@wordpress/i18n': { this: [ 'wp', 'i18n' ] },
|
|
|
|
'@wordpress/keycodes': { this: [ 'wp', 'keycodes' ] },
|
2018-04-17 21:38:56 +00:00
|
|
|
tinymce: 'tinymce',
|
|
|
|
moment: 'moment',
|
2018-07-23 20:14:40 +00:00
|
|
|
react: 'React',
|
|
|
|
'react-dom': 'ReactDOM',
|
2018-04-17 21:38:56 +00:00
|
|
|
};
|
|
|
|
|
2018-11-15 18:16:23 +00:00
|
|
|
const wcAdminPackages = [
|
|
|
|
'components',
|
|
|
|
'csv-export',
|
|
|
|
'currency',
|
|
|
|
'date',
|
|
|
|
'navigation',
|
2019-01-29 16:48:46 +00:00
|
|
|
'number',
|
2018-11-15 18:16:23 +00:00
|
|
|
];
|
2018-10-30 18:57:48 +00:00
|
|
|
|
2018-11-15 18:16:23 +00:00
|
|
|
const entryPoints = {};
|
|
|
|
wcAdminPackages.forEach( name => {
|
2018-10-30 18:57:48 +00:00
|
|
|
externals[ `@woocommerce/${ name }` ] = {
|
2018-11-06 21:53:22 +00:00
|
|
|
this: [ 'wc', name.replace( /-([a-z])/g, ( match, letter ) => letter.toUpperCase() ) ],
|
2018-10-30 18:57:48 +00:00
|
|
|
};
|
2018-11-15 18:16:23 +00:00
|
|
|
entryPoints[ name ] = `./packages/${ name }`;
|
2018-10-30 18:57:48 +00:00
|
|
|
} );
|
|
|
|
|
2018-04-17 21:38:56 +00:00
|
|
|
const webpackConfig = {
|
|
|
|
mode: NODE_ENV,
|
2018-05-04 14:44:19 +00:00
|
|
|
entry: {
|
2018-10-30 18:57:48 +00:00
|
|
|
app: './client/index.js',
|
2018-06-26 14:49:42 +00:00
|
|
|
embedded: './client/embedded.js',
|
2018-11-15 18:16:23 +00:00
|
|
|
...entryPoints,
|
2018-05-04 14:44:19 +00:00
|
|
|
},
|
2018-04-17 21:38:56 +00:00
|
|
|
output: {
|
2018-10-30 18:57:48 +00:00
|
|
|
filename: './dist/[name]/index.js',
|
|
|
|
path: __dirname,
|
2018-11-06 21:53:22 +00:00
|
|
|
library: [ 'wc', '[modulename]' ],
|
2018-04-17 21:38:56 +00:00
|
|
|
libraryTarget: 'this',
|
|
|
|
},
|
|
|
|
externals,
|
|
|
|
module: {
|
|
|
|
rules: [
|
2018-12-06 22:08:40 +00:00
|
|
|
{
|
|
|
|
parser: {
|
|
|
|
amd: false,
|
|
|
|
},
|
|
|
|
},
|
2018-04-17 21:38:56 +00:00
|
|
|
{
|
|
|
|
test: /\.jsx?$/,
|
|
|
|
loader: 'babel-loader',
|
2018-07-23 20:14:40 +00:00
|
|
|
exclude: /node_modules/,
|
2018-04-17 21:38:56 +00:00
|
|
|
},
|
2018-12-26 02:46:32 +00:00
|
|
|
{
|
|
|
|
test: /\.js?$/,
|
|
|
|
use: {
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
presets: [
|
|
|
|
[ '@babel/preset-env', { loose: true, modules: 'commonjs' } ],
|
|
|
|
],
|
|
|
|
plugins: [ 'transform-es2015-template-literals' ],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
include: new RegExp( '/node_modules\/(' +
|
|
|
|
'|d3-array' +
|
|
|
|
'|debug' +
|
|
|
|
'|regexpu-core' +
|
|
|
|
'|unicode-match-property-ecmascript' +
|
|
|
|
'|unicode-match-property-value-ecmascript)/'
|
|
|
|
),
|
|
|
|
},
|
2018-09-24 15:36:35 +00:00
|
|
|
{ test: /\.md$/, use: 'raw-loader' },
|
2018-04-17 21:38:56 +00:00
|
|
|
{
|
2018-11-15 18:16:23 +00:00
|
|
|
test: /\.s?css$/,
|
2019-01-15 10:55:54 +00:00
|
|
|
use: [
|
|
|
|
MiniCssExtractPlugin.loader,
|
|
|
|
'css-loader',
|
|
|
|
{
|
|
|
|
// postcss loader so we can use autoprefixer and theme Gutenberg components
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
options: {
|
|
|
|
config: {
|
|
|
|
path: 'postcss.config.js',
|
2018-07-30 14:05:22 +00:00
|
|
|
},
|
|
|
|
},
|
2019-01-15 10:55:54 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'sass-loader',
|
|
|
|
query: {
|
|
|
|
includePaths: [ 'client/stylesheets/abstracts' ],
|
|
|
|
data:
|
|
|
|
'@import "_colors"; ' +
|
|
|
|
'@import "_variables"; ' +
|
|
|
|
'@import "_breakpoints"; ' +
|
|
|
|
'@import "_mixins"; ',
|
2018-05-14 13:41:30 +00:00
|
|
|
},
|
2019-01-15 10:55:54 +00:00
|
|
|
},
|
|
|
|
],
|
2018-04-17 21:38:56 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2018-05-10 16:35:46 +00:00
|
|
|
resolve: {
|
|
|
|
extensions: [ '.json', '.js', '.jsx' ],
|
2018-11-06 21:53:22 +00:00
|
|
|
modules: [
|
|
|
|
path.join( __dirname, 'client' ),
|
|
|
|
path.join( __dirname, 'packages' ),
|
|
|
|
'node_modules',
|
|
|
|
],
|
2018-07-20 03:40:15 +00:00
|
|
|
alias: {
|
|
|
|
'gutenberg-components': path.resolve( __dirname, 'node_modules/@wordpress/components/src' ),
|
|
|
|
},
|
2018-05-10 16:35:46 +00:00
|
|
|
},
|
2018-10-30 18:57:48 +00:00
|
|
|
plugins: [
|
2019-02-12 20:02:02 +00:00
|
|
|
// Inject the current feature flags.
|
|
|
|
new DefinePlugin( {
|
|
|
|
'window.wcAdminFeatures': { ...WC_ADMIN_CONFIG.features },
|
|
|
|
} ),
|
2018-11-06 21:53:22 +00:00
|
|
|
new CustomTemplatedPathPlugin( {
|
|
|
|
modulename( outputPath, data ) {
|
|
|
|
const entryName = get( data, [ 'chunk', 'name' ] );
|
|
|
|
if ( entryName ) {
|
|
|
|
return entryName.replace( /-([a-z])/g, ( match, letter ) => letter.toUpperCase() );
|
|
|
|
}
|
|
|
|
return outputPath;
|
|
|
|
},
|
|
|
|
} ),
|
2019-01-15 10:55:54 +00:00
|
|
|
new MiniCssExtractPlugin( {
|
2018-10-30 18:57:48 +00:00
|
|
|
filename: './dist/[name]/style.css',
|
|
|
|
} ),
|
2018-11-15 18:16:23 +00:00
|
|
|
new CopyWebpackPlugin(
|
|
|
|
wcAdminPackages.map( packageName => ( {
|
|
|
|
from: `./packages/${ packageName }/build-style/*.css`,
|
|
|
|
to: `./dist/${ packageName }/`,
|
|
|
|
flatten: true,
|
|
|
|
transform: content => content,
|
|
|
|
} ) )
|
|
|
|
),
|
2018-10-30 18:57:48 +00:00
|
|
|
],
|
2018-04-17 21:38:56 +00:00
|
|
|
};
|
|
|
|
|
2018-04-17 23:51:48 +00:00
|
|
|
if ( webpackConfig.mode !== 'production' ) {
|
|
|
|
webpackConfig.devtool = process.env.SOURCEMAP || 'source-map';
|
|
|
|
}
|
|
|
|
|
2018-04-17 21:38:56 +00:00
|
|
|
module.exports = webpackConfig;
|