This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.common.js
130 lines (122 loc) · 3.42 KB
/
webpack.common.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
const fs = require('fs');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
// Helpers
const filesIntoFilenamesArray = (files) =>
[...files].map((file) => file.replace(/\.[^/.]+$/, ''));
const substringAfterChar = (string, char = '+') =>
string.substring(string.indexOf(char) + 1);
const substringBeforeChar = (string, char = '+') =>
string.substring(0, string.indexOf(char));
// Get JS entries array
const entriesFiles = fs.readdirSync(path.resolve(__dirname, 'src/entries'));
// Get views array
const viewsFiles = fs.readdirSync(path.resolve(__dirname, 'src/views'));
const viewsFilenames = filesIntoFilenamesArray(viewsFiles);
// JS entries array into object
const entries = () => {
const entriesJSObj = {};
entriesFiles.map((entry) => {
const entryFilename = entry.replace(/\.[^/.]+$/, '');
return (entriesJSObj[entryFilename] = path.resolve(
__dirname,
`src/entries/${entry}`
));
});
return entriesJSObj;
};
// Common config
module.exports = {
entry: entries(),
output: {
path: path.resolve(__dirname, 'dist/js'),
},
optimization: {
moduleIds: 'deterministic',
},
module: {
rules: [
{
test: /\.[tj]s[x]?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.pug$/i,
loader: 'storypug/lib/webpack-loader.js',
options: {
basedir: path.resolve(__dirname, 'src/components'),
pretty: true,
root: path.resolve(__dirname, 'src/components'),
},
},
{
test: /\.s[ac]ss$/i,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 2,
},
},
'postcss-loader',
'sass-loader',
],
},
{
test: /\.(png|svg|jpg|jpeg|gif|ico|xml|webmanifest)$/i,
include: [path.resolve(__dirname, 'src/assets/images')],
type: 'asset/resource',
generator: {
filename: '../assets/images/[name][ext][query]',
},
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
include: [path.resolve(__dirname, 'src/components')],
type: 'asset/resource',
generator: {
filename: '../assets/images/[hash][ext][query]',
},
},
{
test: /\.(eot|otf|ttf|woff|woff2)$/i,
type: 'asset/resource',
generator: {
filename: '../assets/fonts/[hash][ext][query]',
},
},
],
},
plugins: [
...viewsFilenames.map(
(viewFilename) =>
new HtmlWebpackPlugin({
// Get view
template: path.resolve(__dirname, `src/views/${viewFilename}.pug`),
/**
* Use a specified in a view's name JS file, if specified
* Otherwise use a JS file with the same name as a view
*/
chunks: [substringAfterChar(viewFilename) || viewFilename],
// Output
filename: `../${
substringBeforeChar(viewFilename) || viewFilename
}.html`,
})
),
new MiniCssExtractPlugin({
filename: '../styles/[name].css',
chunkFilename: '../styles/chunks/[id].css',
}),
],
resolve: {
modules: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'src/components'),
'node_modules',
],
},
};