2021-12-08 01:34:50 +01:00
|
|
|
import ForkTsCheckerWebpackPlugin from "fork-ts-checker-webpack-plugin";
|
2022-01-21 21:01:34 +01:00
|
|
|
import fs from 'fs/promises';
|
2021-06-29 18:39:43 +02:00
|
|
|
import HtmlWebpackPlugin from "html-webpack-plugin";
|
|
|
|
import MiniCssExtractPlugin from "mini-css-extract-plugin";
|
2022-01-05 09:58:57 +01:00
|
|
|
import CssMinimizerPlugin from "css-minimizer-webpack-plugin";
|
2021-06-29 18:39:43 +02:00
|
|
|
import NodePolyfillPlugin from "node-polyfill-webpack-plugin";
|
2021-12-08 01:34:50 +01:00
|
|
|
import path from "path";
|
|
|
|
import sveltePreprocess from "svelte-preprocess";
|
|
|
|
import type { Configuration } from "webpack";
|
|
|
|
import webpack from "webpack";
|
|
|
|
import type WebpackDevServer from "webpack-dev-server";
|
2021-05-17 14:30:54 +02:00
|
|
|
|
2021-06-29 18:39:43 +02:00
|
|
|
const mode = process.env.NODE_ENV ?? "development";
|
|
|
|
const buildNpmTypingsForApi = !!process.env.BUILD_TYPINGS;
|
|
|
|
const isProduction = mode === "production";
|
2021-05-12 11:05:49 +02:00
|
|
|
const isDevelopment = !isProduction;
|
|
|
|
|
2021-06-29 18:39:43 +02:00
|
|
|
const entries: { [key: string]: string } = {};
|
|
|
|
if (!buildNpmTypingsForApi) {
|
|
|
|
entries.main = "./src/index.ts";
|
|
|
|
}
|
|
|
|
entries.iframe_api = "./src/iframe_api.ts";
|
|
|
|
|
2020-04-03 14:56:21 +02:00
|
|
|
module.exports = {
|
2021-06-29 18:39:43 +02:00
|
|
|
entry: entries,
|
2021-05-12 11:05:49 +02:00
|
|
|
mode: mode,
|
2021-06-29 18:39:43 +02:00
|
|
|
devtool: isDevelopment ? "inline-source-map" : "source-map",
|
2020-04-03 14:56:21 +02:00
|
|
|
devServer: {
|
2021-06-29 18:39:43 +02:00
|
|
|
contentBase: "./dist",
|
|
|
|
host: "0.0.0.0",
|
2021-03-31 16:20:21 +02:00
|
|
|
sockPort: 80,
|
2020-04-03 18:31:11 +02:00
|
|
|
disableHostCheck: true,
|
2020-05-12 00:07:50 +02:00
|
|
|
historyApiFallback: {
|
2021-06-29 18:39:43 +02:00
|
|
|
rewrites: [{ from: /^_\/.*$/, to: "/index.html" }],
|
|
|
|
disableDotRule: true,
|
2020-05-12 00:07:50 +02:00
|
|
|
},
|
2021-12-03 09:23:52 +01:00
|
|
|
liveReload: process.env.LIVE_RELOAD != "0" && process.env.LIVE_RELOAD != "false",
|
2022-01-21 21:01:34 +01:00
|
|
|
before: (app) => {
|
|
|
|
let appConfigContent = '';
|
|
|
|
const TEMPLATE_PATH = path.join(__dirname, 'dist', 'env-config.template.js');
|
|
|
|
|
|
|
|
function renderTemplateWithEnvVars(content: string): string {
|
|
|
|
let result = content;
|
|
|
|
const regex = /\$\{([a-zA-Z_]+[a-zA-Z0-9_]*?)\}/g;
|
|
|
|
|
|
|
|
let matched: RegExpExecArray | null;
|
|
|
|
while ((matched = regex.exec(content))) {
|
|
|
|
result = result.replace(`\${${matched[1]}}`, process.env[matched[1]] || '');
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void (async () => {
|
|
|
|
const content = (await fs.readFile(TEMPLATE_PATH)).toString();
|
|
|
|
appConfigContent = renderTemplateWithEnvVars(content);
|
|
|
|
})();
|
|
|
|
|
|
|
|
app.get('/env-config.js', (_, response) => {
|
|
|
|
response.setHeader('Content-Type', 'application/javascript; charset=utf-8');
|
|
|
|
response.setHeader('Cache-Control', 'no-cache');
|
|
|
|
response.setHeader('Content-Length', Buffer.byteLength(appConfigContent, 'utf8'));
|
|
|
|
|
|
|
|
response.send(appConfigContent);
|
|
|
|
});
|
|
|
|
},
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.tsx?$/,
|
2021-05-17 16:09:42 +02:00
|
|
|
//use: 'ts-loader',
|
2020-04-03 14:56:21 +02:00
|
|
|
exclude: /node_modules/,
|
2021-06-29 18:39:43 +02:00
|
|
|
loader: "ts-loader",
|
2021-05-17 16:09:42 +02:00
|
|
|
options: {
|
2021-06-29 18:39:43 +02:00
|
|
|
transpileOnly: !buildNpmTypingsForApi,
|
|
|
|
compilerOptions: {
|
|
|
|
declaration: buildNpmTypingsForApi,
|
|
|
|
},
|
2021-05-17 16:09:42 +02:00
|
|
|
},
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
2021-03-18 12:37:05 +01:00
|
|
|
{
|
2022-01-05 09:58:57 +01:00
|
|
|
test: /\.(sc|c)ss$/,
|
2021-05-17 15:42:12 +02:00
|
|
|
exclude: /node_modules/,
|
2022-01-05 09:58:57 +01:00
|
|
|
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
|
2021-03-18 12:37:05 +01:00
|
|
|
},
|
2021-05-11 17:37:21 +02:00
|
|
|
{
|
2021-05-12 15:57:53 +02:00
|
|
|
test: /\.(html|svelte)$/,
|
2021-05-11 17:37:21 +02:00
|
|
|
exclude: /node_modules/,
|
|
|
|
use: {
|
2021-06-29 18:39:43 +02:00
|
|
|
loader: "svelte-loader",
|
2021-05-11 17:37:21 +02:00
|
|
|
options: {
|
|
|
|
compilerOptions: {
|
|
|
|
// Dev mode must be enabled for HMR to work!
|
2021-06-29 18:39:43 +02:00
|
|
|
dev: isDevelopment,
|
2021-05-11 17:37:21 +02:00
|
|
|
},
|
|
|
|
emitCss: isProduction,
|
|
|
|
hotReload: isDevelopment,
|
|
|
|
hotOptions: {
|
|
|
|
// List of options and defaults: https://www.npmjs.com/package/svelte-loader-hot#usage
|
|
|
|
noPreserveState: false,
|
|
|
|
optimistic: true,
|
|
|
|
},
|
2021-05-17 14:30:54 +02:00
|
|
|
preprocess: sveltePreprocess({
|
|
|
|
scss: true,
|
|
|
|
sass: true,
|
2021-06-01 16:17:36 +02:00
|
|
|
}),
|
2021-06-29 18:39:43 +02:00
|
|
|
onwarn: function (
|
|
|
|
warning: { code: string },
|
|
|
|
handleWarning: (warning: { code: string }) => void
|
|
|
|
) {
|
2021-06-01 16:17:36 +02:00
|
|
|
// See https://github.com/sveltejs/svelte/issues/4946#issuecomment-662168782
|
|
|
|
|
2021-06-29 18:39:43 +02:00
|
|
|
if (warning.code === "a11y-no-onchange") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (warning.code === "a11y-autofocus") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (warning.code === "a11y-media-has-caption") {
|
|
|
|
return;
|
|
|
|
}
|
2021-06-01 16:17:36 +02:00
|
|
|
|
|
|
|
// process as usual
|
|
|
|
handleWarning(warning);
|
2021-06-29 18:39:43 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-11 17:37:21 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Required to prevent errors from Svelte on Webpack 5+, omit on Webpack 4
|
|
|
|
// See: https://github.com/sveltejs/svelte-loader#usage
|
|
|
|
{
|
|
|
|
test: /node_modules\/svelte\/.*\.mjs$/,
|
|
|
|
resolve: {
|
2021-06-29 18:39:43 +02:00
|
|
|
fullySpecified: false,
|
|
|
|
},
|
2021-05-11 17:37:21 +02:00
|
|
|
},
|
2021-05-17 14:30:54 +02:00
|
|
|
{
|
2021-05-26 17:07:07 +02:00
|
|
|
test: /\.(eot|svg|png|gif|jpg)$/,
|
2021-05-17 15:42:12 +02:00
|
|
|
exclude: /node_modules/,
|
2021-06-29 18:39:43 +02:00
|
|
|
type: "asset",
|
2021-05-26 17:07:07 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(woff(2)?|ttf)$/,
|
2021-06-29 18:39:43 +02:00
|
|
|
type: "asset",
|
2021-05-26 17:07:07 +02:00
|
|
|
generator: {
|
2021-06-29 18:39:43 +02:00
|
|
|
filename: "fonts/[name][ext]",
|
|
|
|
},
|
|
|
|
},
|
2021-12-08 01:34:50 +01:00
|
|
|
{
|
|
|
|
test: /\.json$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
type: "asset",
|
|
|
|
},
|
2020-04-03 14:56:21 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
resolve: {
|
2021-05-12 15:57:53 +02:00
|
|
|
alias: {
|
2021-06-29 18:39:43 +02:00
|
|
|
svelte: path.resolve("node_modules", "svelte"),
|
2021-05-12 15:57:53 +02:00
|
|
|
},
|
2021-06-29 18:39:43 +02:00
|
|
|
extensions: [".tsx", ".ts", ".js", ".svelte"],
|
|
|
|
mainFields: ["svelte", "browser", "module", "main"],
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
2022-01-05 09:58:57 +01:00
|
|
|
optimization: {
|
2022-01-11 13:53:01 +01:00
|
|
|
minimize: isProduction,
|
2022-01-05 09:58:57 +01:00
|
|
|
minimizer: [new CssMinimizerPlugin(), "..."],
|
|
|
|
},
|
2020-04-03 14:56:21 +02:00
|
|
|
output: {
|
2021-03-04 19:00:00 +01:00
|
|
|
filename: (pathData) => {
|
|
|
|
// Add a content hash only for the main bundle.
|
|
|
|
// We want the iframe_api.js file to keep its name as it will be referenced from outside iframes.
|
2021-06-29 18:39:43 +02:00
|
|
|
return pathData.chunk?.name === "main" ? "js/[name].[contenthash].js" : "[name].js";
|
2021-03-04 19:00:00 +01:00
|
|
|
},
|
2021-06-29 18:39:43 +02:00
|
|
|
path: path.resolve(__dirname, "dist"),
|
|
|
|
publicPath: "/",
|
2020-04-03 14:56:21 +02:00
|
|
|
},
|
|
|
|
plugins: [
|
2021-05-17 14:30:54 +02:00
|
|
|
new webpack.HotModuleReplacementPlugin(),
|
2021-05-17 16:09:42 +02:00
|
|
|
new ForkTsCheckerWebpackPlugin({
|
|
|
|
eslint: {
|
2021-06-29 18:39:43 +02:00
|
|
|
files: "./src/**/*.ts",
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
new MiniCssExtractPlugin({ filename: "[name].[contenthash].css" }),
|
|
|
|
new HtmlWebpackPlugin({
|
2022-01-21 21:01:34 +01:00
|
|
|
template: "./dist/index.ejs",
|
2021-06-29 18:39:43 +02:00
|
|
|
minify: {
|
|
|
|
collapseWhitespace: true,
|
|
|
|
keepClosingSlash: true,
|
|
|
|
removeComments: false,
|
|
|
|
removeRedundantAttributes: true,
|
|
|
|
removeScriptTypeAttributes: true,
|
|
|
|
removeStyleLinkTypeAttributes: true,
|
|
|
|
useShortDoctype: true,
|
|
|
|
},
|
|
|
|
chunks: ["main"],
|
2021-05-17 16:09:42 +02:00
|
|
|
}),
|
2020-04-03 14:56:21 +02:00
|
|
|
new webpack.ProvidePlugin({
|
2021-06-29 18:39:43 +02:00
|
|
|
Phaser: "phaser",
|
2020-04-03 18:31:11 +02:00
|
|
|
}),
|
2021-05-17 16:30:19 +02:00
|
|
|
new NodePolyfillPlugin(),
|
2020-07-28 11:06:08 +02:00
|
|
|
],
|
2021-05-12 13:38:32 +02:00
|
|
|
} as Configuration & WebpackDevServer.Configuration;
|