-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.js
152 lines (148 loc) · 4.59 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
const path = require("path");
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const {CleanWebpackPlugin} = require("clean-webpack-plugin");
const FaviconsWebpackPlugin = require("favicons-webpack-plugin");
const HtmlWebpackPartialsPlugin = require("html-webpack-partials-plugin");
const isDev = process.env.NODE_ENV !== "production";
const entry = path.resolve(__dirname, "./src/index.js");
const outputPath = path.resolve(__dirname, "dist");
function getOptimizationSettings() {
return {
minimize: !isDev,
minimizer: [new CssMinimizerPlugin(), new TerserPlugin()],
};
}
function getPlugins() {
const plugins = [
new CleanWebpackPlugin(),
new CopyPlugin({
patterns: [
{
context: path.resolve(__dirname, "node_modules"),
from: "jsbeeb/roms/**/*",
globOptions: {ignore: ["**/*.txt", "**/*README*"]},
},
{
context: path.resolve(__dirname, "node_modules"),
from: "jsbeeb/sounds/**/*.wav",
},
],
}),
new MonacoWebpackPlugin({
languages: [],
filename: isDev ? "[name].worker.js" : `[name].worker.[contenthash].js`,
}),
new MiniCssExtractPlugin({
filename: isDev ? "[name].css" : "[name].[contenthash].css",
}),
new HtmlWebpackPlugin({
title: "Owlet BBC BASIC Editor",
}),
new HtmlWebpackPartialsPlugin([
{
path: path.resolve(__dirname, "src", "analytics.html"),
location: "head",
priority: "high",
},
]),
new FaviconsWebpackPlugin({
logo: "./assets/images/owlet.png",
prefix: "assets/images/",
favicons: {
icons: {
appleIcon: false,
appleStartup: false,
},
},
}),
];
return plugins;
}
module.exports = {
mode: isDev ? "development" : "production",
entry,
target: "web",
output: {
filename: isDev ? "[name].js" : `[name].[contenthash].js`,
path: outputPath,
},
resolve: {
alias: {
jsunzip: path.resolve(__dirname, "node_modules/jsbeeb/lib/jsunzip.js"),
fs: path.resolve(__dirname, "src/fake-fs.js"),
},
preferRelative: true, // Ugly, for jsbeeb and its love of non-relative imports
},
devtool: "source-map",
plugins: getPlugins(),
devServer: {
hot: isDev,
static: {
publicPath: "/",
directory: "./",
},
},
optimization: getOptimizationSettings(),
module: {
rules: [
{
test: /\.(jpg|png)$/,
type: "asset/inline",
},
{
test: /\.less$/,
use: [
isDev
? "style-loader"
: {
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: "./",
},
},
"css-loader",
"less-loader",
],
},
{
test: /\.css$/,
use: [
isDev
? "style-loader"
: {
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: "./",
},
},
"css-loader",
],
},
{
test: /\.ttf$/,
type: "asset/resource",
},
{
test: /\.(html)$/,
loader: "html-loader",
},
{
test: /\.ya?ml$/,
use: ["yaml-loader"],
},
{
test: /.rom$/i,
use: ["binary-loader"],
},
{
test: /\.node$/,
loader: "node-loader",
},
],
},
};