forked from metabrainz/listenbrainz-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
139 lines (137 loc) · 4.85 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
const path = require("path");
const { WebpackManifestPlugin } = require("webpack-manifest-plugin");
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const LessPluginCleanCSS = require("less-plugin-clean-css");
const StylelintPlugin = require("stylelint-webpack-plugin");
const ESLintPlugin = require("eslint-webpack-plugin");
const baseDir = "/static";
const jsDir = path.join(baseDir, "js");
const distDir = path.join(baseDir, "dist");
const cssDir = path.join(baseDir, "css");
const es5LibrariesToTranspile = [
"d3-array",
"d3-scale",
"internmap",
"react-date-picker",
"react-calendar",
"socket.io-client",
"socket.io-parser",
"engine.io-client",
];
const babelExcludeLibrariesRegexp = new RegExp(
`node_modules/(?!(${es5LibrariesToTranspile.join("|")})/).*`,
""
);
module.exports = function (env, argv) {
const isProd = argv.mode === "production";
const plugins = [
new WebpackManifestPlugin(),
new ForkTsCheckerWebpackPlugin({
typescript: {
diagnosticOptions: {
semantic: true,
syntactic: true,
},
mode: "write-references",
memoryLimit: 4096,
},
}),
new StylelintPlugin({
configFile: ".stylelintrc.js",
failOnError: isProd,
files: "**/static/css/**/*.less",
fix: !isProd,
threads: true,
}),
new ESLintPlugin({
// Starting the path with "**/" because of current dev/prod path discrepancy
// In dev we bind-mount the source code to "/code/static" and in prod to "/static"
// The "**/" allows us to ignore the folder structure and find source files in whatever CWD we're in.
files: "**/js/src/**/*.{ts,tsx,js,jsx}",
fix: !isProd,
}),
];
return {
entry: {
// Importing main.less file here so that it gets compiled.
// Otherwise with a standalone entrypoint Webpack would generate a superfluous js file.
// All the Less/CSS will be exported separately to a main.css file and not appear in the recentListens module
recentListens: [
path.resolve(jsDir, "src/recent/RecentListens.tsx"),
path.resolve(cssDir, "main.less"),
],
listens: [path.resolve(jsDir, "src/user/Listens.tsx")],
import: path.resolve(jsDir, "src/lastfm/LastFMImporter.tsx"),
userEntityChart: path.resolve(jsDir, "src/stats/UserEntityChart.tsx"),
userReports: path.resolve(jsDir, "src/stats/UserReports.tsx"),
userPageHeading: path.resolve(jsDir, "src/user/UserPageHeading.tsx"),
userFeedback: path.resolve(jsDir, "src/user/UserFeedback.tsx"),
userPins: path.resolve(jsDir, "src/pins/UserPins.tsx"),
userFeed: path.resolve(jsDir, "src/user-feed/UserFeed.tsx"),
playlist: path.resolve(jsDir, "src/playlists/Playlist.tsx"),
playlists: path.resolve(jsDir, "src/playlists/Playlists.tsx"),
huesound: path.resolve(jsDir, "src/huesound/ColorPlay.tsx"),
yearInMusic: path.resolve(jsDir, "src/year-in-music/YearInMusic.tsx"),
homepage: path.resolve(jsDir, "src/home/Homepage.tsx"),
recommendations: path.resolve(
jsDir,
"src/recommendations/Recommendations.tsx"
),
missingMBData: path.resolve(
jsDir,
"src/missing-mb-data/MissingMBData.tsx"
),
playerPage: path.resolve(jsDir, "src/player-pages/PlayerPage.tsx"),
metadataViewer: path.resolve(
jsDir,
"src/metadata-viewer/MetadataViewerPageWrapper.tsx"
),
selectTimezone: path.resolve(
jsDir,
"src/user-settings/SelectTimezone.tsx"
),
selectTroiPreferences: path.resolve(
jsDir,
"src/user-settings/SelectTroiPreferences.tsx"
),
},
output: {
filename: isProd ? "[name].[contenthash].js" : "[name].js",
path: distDir,
publicPath: `${distDir}/`,
clean: true, // Clean the output directory before emit.
},
devtool: isProd ? "source-map" : "eval-source-map",
module: {
rules: [
{
test: /\.(js|ts)x?$/,
// some third-party libraries need to be transpiled to ES5, we include them with the following regex
exclude: babelExcludeLibrariesRegexp,
// Don't specify the babel configuration here
// Configuration can be found in ./babel.config.js
use: "babel-loader",
},
{
test: /\.less$/i,
type: "asset/resource",
loader: "less-loader",
generator: {
filename: isProd ? "[name].[contenthash].css" : "[name].css",
},
options: {
lessOptions: {
math: "always",
plugins: [new LessPluginCleanCSS({ advanced: true })],
},
},
},
],
},
resolve: {
modules: ["/code/node_modules", path.resolve(baseDir, "node_modules")],
extensions: [".ts", ".tsx", ".js", ".jsx", ".json"],
},
plugins,
};
};