-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack-base.config.js
More file actions
163 lines (144 loc) · 5.2 KB
/
webpack-base.config.js
File metadata and controls
163 lines (144 loc) · 5.2 KB
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
/**
* Base Webpack configuration for the Yivic Lite theme.
*
* This file defines the shared build pipeline, including:
* - ES5-compatible JS bundling
* - SCSS → CSS compilation
* - Source maps during development
* - CSS/JS minification in production
* - TypeScript support (optional)
*
* The final config is generated through buildConfig() and extended
* by webpack.config.js with the appropriate mode value.
*/
const path = require('path');
const WebpackBuildNotifierPlugin = require('webpack-build-notifier');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
module.exports.buildConfig = function (webpackVariables, mode) {
const { webpackParams } = webpackVariables;
const isProduction = mode === 'production';
return {
/**
* Target modern browsers while maintaining ES5 compatibility
* to avoid Webpack's “no default script chunk format available” error.
*/
target: ['web', 'es5'],
/** Generate source maps in development mode only */
devtool: isProduction ? false : 'inline-source-map',
/** Entry points for JavaScript and SCSS assets */
entry: webpackParams.entryPath,
/** Output configuration */
output: {
filename: webpackParams.jsOutputPath,
path: path.resolve(__dirname),
/**
* Explicit chunk format to resolve compatibility issues
* when building for non-module environments.
*/
chunkFormat: 'array-push',
// Prevent Webpack from cleaning the entire theme directory.
clean: false,
},
module: {
rules: [
/**
* TypeScript support (optional).
* Safe to remove if TypeScript is not used.
*/
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
/** JavaScript transpilation via Babel */
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
['@babel/preset-env', { targets: 'defaults' }],
],
},
},
},
/** Load source maps for JS files */
{
test: /\.js$/,
enforce: 'pre',
use: ['source-map-loader'],
},
/**
* Plain CSS loader chain
* Extracted into standalone CSS files.
*/
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader'],
},
/**
* SCSS loader chain:
* SCSS → CSS → PostCSS → extracted CSS file.
*/
{
test: /\.(sass|scss)$/i,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
sourceMap: true,
url: false,
},
},
{
loader: 'resolve-url-loader',
options: { sourceMap: true },
},
{
loader: 'postcss-loader',
options: { sourceMap: true },
},
{
loader: 'sass-loader',
options: { sourceMap: true },
},
],
},
],
},
plugins: [
/** Extract compiled CSS into separate output files */
new MiniCssExtractPlugin({
filename: webpackParams.cssOutputPath,
}),
/** Desktop notifications for build results */
new WebpackBuildNotifierPlugin({
title: "Yivic Lite Webpack Build",
suppressSuccess: true,
}),
],
/** Allow importing JS/TS without specifying file extensions */
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
/** Production-level optimizations */
optimization: {
minimize: isProduction,
minimizer: [
/** JavaScript minifier */
new TerserPlugin({
parallel: true,
terserOptions: { compress: true },
}),
/** CSS minifier */
new CssMinimizerPlugin(),
],
},
/** Cleaner CLI logging */
stats: 'minimal',
};
};