|
|
|
@ -1,14 +1,15 @@
|
|
|
|
|
const path = require('path');
|
|
|
|
|
const webpack = require('webpack');
|
|
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
|
|
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
|
|
|
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
|
|
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
|
|
|
const nodeEnv = (process.env.NODE_ENV || 'development').trim();
|
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
|
|
// eslint-disable-next-line
|
|
|
|
|
const __DEV__ = nodeEnv !== 'production';
|
|
|
|
|
|
|
|
|
|
const devtool = __DEV__ ? '#source-map' : '';
|
|
|
|
|
const devtool = __DEV__ ? 'eval-cheap-module-source-map' : undefined;
|
|
|
|
|
|
|
|
|
|
const plugins = [
|
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
@ -22,11 +23,15 @@ const plugins = [
|
|
|
|
|
}),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const themeEntries = {};
|
|
|
|
|
for (let i = 0; i < 16; i++) {
|
|
|
|
|
themeEntries[`theme${i}`] = `./resources/assets/themes/theme${i}.less`;
|
|
|
|
|
}
|
|
|
|
|
const themeFileNameRegex = /theme\d+/;
|
|
|
|
|
const themePath = path.resolve('resources/assets/themes');
|
|
|
|
|
const themeEntries = fs
|
|
|
|
|
.readdirSync(themePath)
|
|
|
|
|
.filter((fileName) => fileName.match(themeFileNameRegex))
|
|
|
|
|
.reduce((entries, themeFileName) => {
|
|
|
|
|
entries[path.parse(themeFileName).name] = `${themePath}/${themeFileName}`;
|
|
|
|
|
return entries;
|
|
|
|
|
}, {});
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
mode: __DEV__ ? 'development' : 'production',
|
|
|
|
@ -44,7 +49,7 @@ module.exports = {
|
|
|
|
|
publicPath: '',
|
|
|
|
|
},
|
|
|
|
|
optimization: {
|
|
|
|
|
minimizer: __DEV__ ? [] : [new OptimizeCSSAssetsPlugin({}), new TerserPlugin()],
|
|
|
|
|
minimizer: __DEV__ ? [] : [new CssMinimizerPlugin(), new TerserPlugin()],
|
|
|
|
|
},
|
|
|
|
|
module: {
|
|
|
|
|
rules: [
|
|
|
|
@ -52,7 +57,7 @@ module.exports = {
|
|
|
|
|
test: /\.jsx?$/,
|
|
|
|
|
exclude: /(node_modules)/,
|
|
|
|
|
loader: 'babel-loader',
|
|
|
|
|
query: { cacheDirectory: true },
|
|
|
|
|
options: { cacheDirectory: true },
|
|
|
|
|
},
|
|
|
|
|
{ test: /\.(jpg|eot|ttf|otf|svg|woff2?)(\?.*)?$/, loader: 'file-loader' },
|
|
|
|
|
{ test: /\.json$/, loader: 'json-loader' },
|
|
|
|
@ -70,8 +75,8 @@ module.exports = {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{ loader: 'less-loader' },
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
plugins,
|
|
|
|
|