-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
232 lines (204 loc) · 5.3 KB
/
webpack.config.js
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// NodeJS modules
const path = require('node:path');
const fs = require('node:fs');
// Webpack plugins
const HtmlWebpackPlugin = require('html-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const TerserWebpackPlugin = require('terser-webpack-plugin')
const CssMinimizerWebpackPlugin = require('css-minimizer-webpack-plugin')
// Access the fields to configure webpack
//const ejsLoader = require('ejs-loader')
/*
at readDirRecursively (C:\Users\Timber\Development\webpack-5-templating-with-ejs-and-multiple-html-pages\webpack.config.js:37:6)
at ejsPagesArray (C:\Users\Timber\Development\webpack-5-templating-with-ejs-and-multiple-html-pages\webpack.config.js:60:2)
*/
// Destructure variables from pkgVars.config
// destruct vars from pkg.json
const {
entry,
sourceDir,
buildDir,
viewsDir,
port,
pageTitle
} = require('./package.json').config;
// Get the script name, how to execute webpack, dev or build
const currentTask = process.env.npm_lifecycle_event;
const ejsPagesArray = () => {
// creating views dir
const sourceViewsDir = `${sourceDir}/${viewsDir}`;
// read all files in views dir
const readDirRecursively = (dirPath = sourceViewsDir, relativeFilePathArray = []) => {
// fs.readdirSync(path[, options])
fs.readdirSync(dirPath).forEach(file => {
//create folder and file name
const dirPathFile = dirPath + path.sep + file;
// for nested files/folders
if (fs.statSync(dirPathFile).isDirectory()) {
relativeFilePathArray = readDirRecursively(dirPathFile, relativeFilePathArray)
} else {
relativeFilePathArray.push(path.join(dirPath, path.sep, file))
}
})
return relativeFilePathArray;
}
const htmlWebpackPluginArray = []
const firstCharacterUpperCase = string => string.split(' ').map(word => word.charAt(0).toUpperCase() + word.slice(1)).join(' ')
const titleFromRelativeFilePath = title => firstCharacterUpperCase(title.split('/').pop().replaceAll('-', ' '))
readDirRecursively()
.filter(file => file.endsWith('.ejs'))
.map(file => file
.replace(/\\/g, '/')
.replace(`${sourceViewsDir}/`, '')
.replace('.ejs', ''))
.forEach(relativeFilePath => {
// if page is index.html set title from pkg.json
// else generate title
const title = (relativeFilePath == 'index') ? pageTitle : titleFromRelativeFilePath(relativeFilePath)
htmlWebpackPluginArray.push(
new HtmlWebpackPlugin({
filename: `./${relativeFilePath}.html`,
template: `./${sourceDir}/assets/layout/template.js`,
templateParameters: {
'title': title,
'page': relativeFilePath,
},
})
)
})
return htmlWebpackPluginArray
}
// Common style configuration
const styleConfig = {
test: /\.less$/i,
use: [
'css-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
'autoprefixer'
]
}
}
},
"less-loader"
]
}
// Common webpack configuration
const config = {
entry: `./${sourceDir}/assets/js/${entry}.js`,
plugins: ejsPagesArray(),
module: {
rules: [
styleConfig, {
test: /\.ejs$/i,
loader: 'ejs-loader',
options: {
esModule: false,
}
},
{
test: /\.(woff2?|ttf|eot)(\?v=\w+)?$/,
exclude: /(node_modules)/,
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext][query]',
},
},
{
test: /\.(png|jpg|gif|ico|svg)(\?.*)?$/,
exclude: /(node_modules)/,
type: 'asset/resource',
},
{
test: /\.(xml|json|webmanifest|txt)/,
exclude: /(node_modules)/,
type: 'asset/resource',
},
{
test: /\.html$/i,
loader: "html-loader",
options: {
esModule: false,
},
},
]
}
};
// Webpack development configuration
if (currentTask === 'dev') {
// Output for the bundles
config.output = {
// optional
filename: `${entry}.js`,
path: path.resolve(__dirname, sourceDir),
assetModuleFilename: './assets/images/[name][ext]'
//assetModuleFilename: 'images/[name][ext][query]'
};
// Dev server
config.devServer = {
static: {
directory: path.join(__dirname, sourceDir)
},
port
};
// Add the style-loader, to add styles to the DOM
styleConfig.use.unshift('style-loader');
}
// Webpack production configuration
if (currentTask === 'build') {
// Output for the bundles
config.output = {
path: path.resolve(__dirname, buildDir),
filename: `./assets/js/${entry}.[chunkhash].js`,
assetModuleFilename: './assets/images/[name][ext]'
};
// Babel configuration
config.module.rules.push(
{
test: /\.js$/i,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: [
'@babel/preset-env'
]
}
},
},
);
// Add a loader to extract the styles in css file
styleConfig.use.unshift({
loader: MiniCssExtractPlugin.loader
});
// Code optimization
config.optimization = {
minimize: true,
minimizer: [
new TerserWebpackPlugin,
new CssMinimizerWebpackPlugin
]
}
// Plugins
config.plugins.push(
new CleanWebpackPlugin(),
new MiniCssExtractPlugin({
filename: './assets/css/styles.[chunkhash].css'
}),
new CopyWebpackPlugin({
patterns: [
{
from: `./${sourceDir}/assets/images/`,
to: './assets/images/'
}
]
})
);
}
// Export the config object
module.exports = config;