forked from LemmyNet/lemmy-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
157 lines (147 loc) · 4.66 KB
/
webpack.config.js
File metadata and controls
157 lines (147 loc) · 4.66 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
const webpack = require("webpack");
const { resolve } = require("path");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const nodeExternals = require("webpack-node-externals");
const CopyPlugin = require("copy-webpack-plugin");
const { ServiceWorkerPlugin } = require("service-worker-webpack");
const {
bundledSyntaxHighlighters,
lazySyntaxHighlighters,
} = require("./src/shared/build-config");
const banner = `
hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file]
Source code: https://github.com/LemmyNet/lemmy-ui
Created by dessalines
@license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
`;
const contextPlugin = (() => {
const check = x => x.match(/^[0-9a-zA-Z-]+$/);
const eagerNames = bundledSyntaxHighlighters.filter(check).join("|");
const eagerHljs = new RegExp(`^[.][/\\\\](${eagerNames})[.]js\$`);
let lazyHljs;
if (lazySyntaxHighlighters === "*") {
lazyHljs = new RegExp(`^[.][/\\\\](?!(${eagerNames})[.]js\$)[^.]+[.]js\$`);
} else {
const lazyNames = lazySyntaxHighlighters.filter(check).join("|");
lazyHljs = new RegExp(`^[.][/\\\\](${lazyNames})[.]js\$`);
}
// Plugin will be used for all parameterized dynamic imports.
return new webpack.ContextReplacementPlugin(/.*/, options => {
if (/^highlight.js\/lib\/languages$/.test(options.request)) {
if (options.mode == "eager") {
options.regExp = eagerHljs;
} else {
options.regExp = lazyHljs;
}
} else if (/^date-fns\/locale$/.test(options.request)) {
} else {
return;
}
options.recursive = false;
options.request = resolve(__dirname, "node_modules/" + options.request);
});
})();
module.exports = (env, argv) => {
const mode = argv.mode;
const base = {
output: {
hashFunction: "xxhash64",
},
resolve: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
alias: {
"@": resolve(__dirname, "src/"),
"@utils": resolve(__dirname, "src/shared/utils/"),
"@services/*": resolve(__dirname, "src/shared/services/*"),
"@components/*": resolve(__dirname, "src/shared/components/*"),
},
},
performance: {
hints: false,
},
module: {
rules: [
{
test: /\.(scss|css)$/i,
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
},
{
test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by
exclude: /node_modules/, // ignore node_modules
loader: "babel-loader",
},
// Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467
{
test: /\.m?js/,
resolve: {
fullySpecified: false,
},
},
],
},
plugins: [
new webpack.DefinePlugin({
"process.env.COMMIT_HASH": `"${env.COMMIT_HASH}"`,
"process.env.NODE_ENV": `"${mode}"`,
}),
new MiniCssExtractPlugin({
filename: "styles/styles.css",
}),
new CopyPlugin({
patterns: [{ from: "./src/assets", to: "./assets" }],
}),
new webpack.BannerPlugin({
banner,
}),
contextPlugin,
],
};
const serverConfig = {
...base,
entry: "./src/server/index.tsx",
output: {
...base.output,
filename: "js/server.js",
publicPath: "/",
chunkLoading: false, // everything bundled
},
target: "node",
externals: [nodeExternals(), "inferno-helmet"],
};
const clientConfig = {
...base,
entry: "./src/client/index.tsx",
target: "browserslist", // looks up package.json
output: {
...base.output,
filename: "js/client.js",
publicPath: `/static/${env.COMMIT_HASH}/`,
chunkFilename: "js/[name].client.js", // predictable names for manual preload
},
plugins: [
...base.plugins,
new ServiceWorkerPlugin({
enableInDevelopment: mode !== "development", // this may seem counterintuitive, but it is correct
workbox: {
cacheId: "lemmy",
include: [/(assets|styles|js)\/.+\..+$/g],
inlineWorkboxRuntime: true,
},
}),
],
};
if (mode === "development") {
// serverConfig.cache = {
// type: "filesystem",
// name: "server",
// };
const RunNodeWebpackPlugin = require("run-node-webpack-plugin");
serverConfig.plugins.push(
new RunNodeWebpackPlugin({ runOnlyInWatchMode: true }),
);
} else if (mode === "none") {
const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");
serverConfig.plugins.push(new BundleAnalyzerPlugin());
}
return [serverConfig, clientConfig];
};