oont-contents/plugins/jetpack/jetpack_vendor/automattic/jetpack-classic-theme-helper/webpack.config.js
2025-02-08 15:10:23 +01:00

55 lines
1.3 KiB
JavaScript

const jetpackWebpackConfig = require( '@automattic/jetpack-webpack-config/webpack' );
const { glob } = require( 'glob' );
const sharedWebpackConfig = {
mode: jetpackWebpackConfig.mode,
devtool: jetpackWebpackConfig.devtool,
output: jetpackWebpackConfig.output,
optimization: {
...jetpackWebpackConfig.optimization,
},
resolve: {
...jetpackWebpackConfig.resolve,
modules: [ 'node_modules' ],
alias: {
...jetpackWebpackConfig.resolve.alias,
fs: false,
},
},
node: {},
externals: {
...jetpackWebpackConfig.externals,
jetpackConfig: JSON.stringify( {
consumer_slug: 'jetpack-classic-theme-helper',
} ),
},
module: {
strictExportPresence: true,
rules: [
// Transpile JavaScript
jetpackWebpackConfig.TranspileRule( {
exclude: /node_modules\//,
} ),
// Handle CSS.
jetpackWebpackConfig.CssRule( {
extensions: [ 'css' ],
} ),
],
},
plugins: [ ...jetpackWebpackConfig.StandardPlugins() ],
};
const classicThemeHelperFiles = {};
for ( const file of glob
.sync( 'src/**/*.js' )
.filter( name => ! name.endsWith( '.min.js' ) && name.indexOf( '/test/' ) < 0 ) ) {
classicThemeHelperFiles[ file.substring( 4, file.length - 3 ) ] = './' + file;
}
module.exports = [
{
...sharedWebpackConfig,
entry: classicThemeHelperFiles,
},
];