File size: 7,373 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
const path = require( 'path' );
const process = require( 'process' ); // eslint-disable-line
const FileConfig = require( '@automattic/calypso-build/webpack/file-loader' );
const Minify = require( '@automattic/calypso-build/webpack/minify' );
const SassConfig = require( '@automattic/calypso-build/webpack/sass' );
const TranspileConfig = require( '@automattic/calypso-build/webpack/transpile' );
const { shouldTranspileDependency } = require( '@automattic/calypso-build/webpack/util' );
const ExtensiveLodashReplacementPlugin = require( '@automattic/webpack-extensive-lodash-replacement-plugin' );
const InlineConstantExportsPlugin = require( '@automattic/webpack-inline-constant-exports-plugin' );
const DependencyExtractionWebpackPlugin = require( '@wordpress/dependency-extraction-webpack-plugin' );
const {
defaultRequestToExternal,
defaultRequestToHandle,
} = require( '@wordpress/dependency-extraction-webpack-plugin/lib/util' );
const autoprefixerPlugin = require( 'autoprefixer' );
const webpack = require( 'webpack' );
const { BundleAnalyzerPlugin } = require( 'webpack-bundle-analyzer' );
const cacheIdentifier = require( '../../build-tools/babel/babel-loader-cache-identifier' );
const GenerateChunksMapPlugin = require( '../../build-tools/webpack/generate-chunks-map-plugin' );
const shouldEmitStats = process.env.EMIT_STATS && process.env.EMIT_STATS !== 'false';
const isDevelopment = process.env.NODE_ENV !== 'production';
const outBasePath = process.env.BLAZE_DASHBOARD_PACKAGE_PATH
? process.env.BLAZE_DASHBOARD_PACKAGE_PATH
: __dirname;
const outputPath = path.join( outBasePath, 'dist' );
const defaultBrowserslistEnv = 'evergreen';
const browserslistEnv = process.env.BROWSERSLIST_ENV || defaultBrowserslistEnv;
const extraPath = browserslistEnv === 'defaults' ? 'fallback' : browserslistEnv;
const cachePath = path.resolve( '.cache', extraPath );
// TODO: Check any unused components that we don't want to include inside the final build
// This can happened because we are using a component that conditionally depends on another, but the
// condition never checks. So its safe to remove from the final build
const excludedPackages = [];
const excludedPackagePlugins = excludedPackages.map(
// Note: apparently the word "package" is a reserved keyword here for some reason
( pkg ) =>
new webpack.NormalModuleReplacementPlugin(
pkg,
path.resolve( __dirname, 'src/components/nothing' )
)
);
module.exports = {
bail: ! isDevelopment,
entry: {
build: path.join( __dirname, 'src', 'app' ),
},
mode: isDevelopment ? 'development' : 'production',
devtool: false,
output: {
path: outputPath,
filename: '[name].min.js',
chunkFilename: '[name]-[contenthash].js?minify=false',
},
optimization: {
minimize: ! isDevelopment,
concatenateModules: ! shouldEmitStats,
minimizer: Minify(),
splitChunks: false,
},
module: {
strictExportPresence: true,
rules: [
TranspileConfig.loader( {
workerCount: 2,
configFile: path.resolve( '../../babel.config.js' ),
cacheDirectory: path.resolve( cachePath, 'babel-client' ),
cacheIdentifier,
cacheCompression: false,
exclude: /node_modules\//,
} ),
TranspileConfig.loader( {
workerCount: 2,
presets: [ require.resolve( '@automattic/calypso-babel-config/presets/dependencies' ) ],
cacheDirectory: path.resolve( cachePath, 'babel-client' ),
cacheIdentifier,
cacheCompression: false,
include: shouldTranspileDependency,
} ),
SassConfig.loader( {
includePaths: [ __dirname ],
postCssOptions: {
// Do not use postcss.config.js. This ensure we have the final say on how PostCSS is used in calypso.
// This is required because Calypso imports `@automattic/notifications` and that package defines its
// own `postcss.config.js` that they use for their webpack bundling process.
config: false,
plugins: [ autoprefixerPlugin() ],
},
prelude: `@use '${ require.resolve(
'calypso/assets/stylesheets/shared/_utils.scss'
) }' as *;`,
} ),
FileConfig.loader(),
{
test: /.*config\/production\.json$/,
use: {
loader: './filter-json-config-loader',
options: {
keys: [
'features',
'dsp_stripe_pub_key',
'dsp_widget_js_src',
'client_slug',
'hotjar_enabled',
],
},
},
},
],
},
resolve: {
extensions: [ '.json', '.js', '.jsx', '.ts', '.tsx' ],
mainFields: [ 'browser', 'calypso:src', 'module', 'main' ],
conditionNames: [ 'calypso:src', 'import', 'module', 'require' ],
},
node: false,
plugins: [
new webpack.DefinePlugin( {
global: 'window',
'process.env.NODE_DEBUG': JSON.stringify( process.env.NODE_DEBUG || false ),
} ),
...SassConfig.plugins( {
filename: '[name].min.css',
chunkFilename: '[contenthash].css',
minify: ! isDevelopment,
} ),
new webpack.DefinePlugin( {
__i18n_text_domain__: JSON.stringify( 'blaze-dashboard' ),
} ),
new DependencyExtractionWebpackPlugin( {
injectPolyfill: true,
useDefaults: false,
requestToHandle: defaultRequestToHandle,
requestToExternal: ( request ) => {
if (
! [
'lodash',
'lodash-es',
'react',
'react-dom',
'@wordpress/components',
'@wordpress/compose',
'@wordpress/i18n',
'@wordpress/is-shallow-equal',
'@wordpress/primitives',
'@wordpress/url',
'moment',
'../moment',
].includes( request )
) {
return;
}
// moment locales requires moment.js main file, so we need to handle it as an external as well.
if ( request === '../moment' ) {
request = 'moment';
}
return defaultRequestToExternal( request );
},
} ),
! isDevelopment &&
new GenerateChunksMapPlugin( {
output: path.resolve( outBasePath, 'dist/chunks-map.json' ),
} ),
/*
* ExPlat: Don't import the server logger when we are in the browser
*/
new webpack.NormalModuleReplacementPlugin(
/^calypso\/server\/lib\/logger$/,
'calypso/lib/explat/internals/logger-browser-replacement'
),
new webpack.IgnorePlugin( { resourceRegExp: /^\.\/locale$/, contextRegExp: /moment$/ } ),
new ExtensiveLodashReplacementPlugin(),
new InlineConstantExportsPlugin( /\/client\/state\/action-types.[tj]s$/ ),
new InlineConstantExportsPlugin( /\/client\/state\/themes\/action-types.[tj]s$/ ),
new webpack.NormalModuleReplacementPlugin( /^path$/, 'path-browserify' ),
// Repalce the `packages/components/src/gridicon/index.tsx` with a replacement that does not enqueue the SVG sprite.
// The sprite is loaded separately in Jetpack.
new webpack.NormalModuleReplacementPlugin( /^\.\.\/gridicon$/, '../gridicon/no-asset' ),
new webpack.NormalModuleReplacementPlugin( /^\.\/gridicon$/, './gridicon/no-asset' ),
new webpack.NormalModuleReplacementPlugin(
/^calypso\/components\/jetpack-colophon$/,
'calypso/components/jetpack/jetpack-footer'
),
new webpack.NormalModuleReplacementPlugin(
/^calypso\/components\/formatted-header$/,
path.resolve( __dirname, 'src/components/generic-header' )
),
...excludedPackagePlugins,
shouldEmitStats &&
new BundleAnalyzerPlugin( {
analyzerMode: 'server',
statsOptions: {
source: false,
reasons: false,
optimizationBailout: false,
chunkOrigins: false,
chunkGroups: true,
},
} ),
].filter( Boolean ),
};
|