2021-06-10 16:19:38 +02:00
|
|
|
/* eslint-disable quote-props */
|
|
|
|
|
2021-08-01 17:05:33 +02:00
|
|
|
const dotenv = require('dotenv');
|
2017-04-21 16:06:52 +02:00
|
|
|
const path = require('path');
|
2021-08-01 16:28:38 +02:00
|
|
|
const webpack = require('webpack');
|
2017-04-21 16:06:52 +02:00
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
2019-12-24 03:48:19 +01:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
|
|
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
2021-04-22 13:09:50 +02:00
|
|
|
const HtmlWebpackInjectPreload = require('@principalstudio/html-webpack-inject-preload');
|
2021-08-08 20:40:01 +02:00
|
|
|
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
|
2021-10-20 12:18:47 +02:00
|
|
|
const SentryCliPlugin = require("@sentry/webpack-plugin");
|
2016-10-25 18:07:43 +02:00
|
|
|
|
2021-08-02 22:27:13 +02:00
|
|
|
dotenv.config();
|
2021-04-15 16:15:48 +02:00
|
|
|
let ogImageUrl = process.env.RIOT_OG_IMAGE_URL;
|
|
|
|
if (!ogImageUrl) ogImageUrl = 'https://app.element.io/themes/element/img/logos/opengraph.png';
|
2018-03-14 19:34:26 +01:00
|
|
|
|
2021-10-27 16:16:04 +02:00
|
|
|
if (!process.env.VERSION) {
|
|
|
|
console.warn("Unset VERSION variable - this may affect build output");
|
|
|
|
process.env.VERSION = "!!UNSET!!";
|
|
|
|
}
|
|
|
|
|
2021-08-01 16:28:38 +02:00
|
|
|
const cssThemes = {
|
|
|
|
// CSS themes
|
2021-08-20 13:19:19 +02:00
|
|
|
"theme-legacy-light": "./node_modules/matrix-react-sdk/res/themes/legacy-light/css/legacy-light.scss",
|
2021-08-01 16:28:38 +02:00
|
|
|
"theme-legacy-dark": "./node_modules/matrix-react-sdk/res/themes/legacy-dark/css/legacy-dark.scss",
|
|
|
|
"theme-light": "./node_modules/matrix-react-sdk/res/themes/light/css/light.scss",
|
2021-10-25 11:38:05 +02:00
|
|
|
"theme-light-high-contrast":
|
|
|
|
"./node_modules/matrix-react-sdk/res/themes/light-high-contrast/css/light-high-contrast.scss",
|
2021-08-01 16:28:38 +02:00
|
|
|
"theme-dark": "./node_modules/matrix-react-sdk/res/themes/dark/css/dark.scss",
|
|
|
|
"theme-light-custom": "./node_modules/matrix-react-sdk/res/themes/light-custom/css/light-custom.scss",
|
|
|
|
"theme-dark-custom": "./node_modules/matrix-react-sdk/res/themes/dark-custom/css/dark-custom.scss",
|
|
|
|
};
|
|
|
|
|
|
|
|
function getActiveThemes() {
|
2021-08-18 18:12:36 +02:00
|
|
|
// Default to `light` theme when the MATRIX_THEMES environment variable is not defined.
|
2021-08-18 18:11:12 +02:00
|
|
|
const theme = process.env.MATRIX_THEMES ?? 'light';
|
2021-08-01 16:28:38 +02:00
|
|
|
const themes = theme.split(',').filter(x => x).map(x => x.trim()).filter(x => x);
|
|
|
|
return themes;
|
|
|
|
}
|
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
module.exports = (env, argv) => {
|
2021-11-03 14:19:21 +01:00
|
|
|
// Establish settings based on the environment and args.
|
|
|
|
//
|
|
|
|
// argv.mode is always set to "production" by yarn build
|
|
|
|
// (called to build prod, nightly and develop.element.io)
|
|
|
|
// arg.mode is set to "delopment" by yarn start
|
|
|
|
// (called by developers, runs the continuous reload script)
|
|
|
|
// process.env.CI_PACKAGE is set when yarn build is called from scripts/ci_package.sh
|
|
|
|
// (called to build nightly and develop.element.io)
|
|
|
|
const nodeEnv = argv.mode;
|
2021-08-01 16:28:38 +02:00
|
|
|
const devMode = nodeEnv !== 'production';
|
2021-08-12 18:32:13 +02:00
|
|
|
const useHMR = process.env.CSS_HOT_RELOAD === '1' && devMode;
|
2021-08-25 17:57:46 +02:00
|
|
|
const fullPageErrors = process.env.FULL_PAGE_ERRORS === '1' && devMode;
|
2021-11-03 14:19:21 +01:00
|
|
|
const enableMinification = !devMode && !process.env.CI_PACKAGE;
|
2018-09-03 21:38:30 +02:00
|
|
|
|
2020-01-16 19:55:54 +01:00
|
|
|
const development = {};
|
2021-11-03 14:19:21 +01:00
|
|
|
if (devMode) {
|
|
|
|
// High quality, embedded source maps for dev builds
|
|
|
|
development['devtool'] = "eval-source-map";
|
2020-07-17 15:57:48 +02:00
|
|
|
} else {
|
2021-11-03 14:19:21 +01:00
|
|
|
if (process.env.CI_PACKAGE) {
|
|
|
|
// High quality source maps in separate .map files which include the source. This doesn't bulk up the .js
|
|
|
|
// payload file size, which is nice for performance but also necessary to get the bundle to a small enough
|
|
|
|
// size that sentry will accept the upload.
|
|
|
|
development['devtool'] = 'source-map';
|
|
|
|
} else {
|
|
|
|
// High quality source maps in separate .map files which don't include the source
|
|
|
|
development['devtool'] = 'nosources-source-map';
|
|
|
|
}
|
2020-01-16 19:55:54 +01:00
|
|
|
}
|
|
|
|
|
2020-01-21 02:09:48 +01:00
|
|
|
// Resolve the directories for the react-sdk and js-sdk for later use. We resolve these early so we
|
|
|
|
// don't have to call them over and over. We also resolve to the package.json instead of the src
|
|
|
|
// directory so we don't have to rely on a index.js or similar file existing.
|
2020-01-21 11:16:32 +01:00
|
|
|
const reactSdkSrcDir = path.resolve(require.resolve("matrix-react-sdk/package.json"), '..', 'src');
|
|
|
|
const jsSdkSrcDir = path.resolve(require.resolve("matrix-js-sdk/package.json"), '..', 'src');
|
2020-01-21 02:09:48 +01:00
|
|
|
|
2021-08-01 17:05:33 +02:00
|
|
|
const ACTIVE_THEMES = getActiveThemes();
|
|
|
|
function getThemesImports() {
|
|
|
|
const imports = ACTIVE_THEMES.map((t, index) => {
|
|
|
|
const themeImportPath = cssThemes[`theme-${ t }`].replace('./node_modules/', '');
|
|
|
|
return themeImportPath;
|
|
|
|
});
|
|
|
|
const s = JSON.stringify(ACTIVE_THEMES);
|
|
|
|
return `
|
2021-08-02 22:27:13 +02:00
|
|
|
window.MX_insertedThemeStylesCounter = 0;
|
|
|
|
window.MX_DEV_ACTIVE_THEMES = (${ s });
|
|
|
|
${ imports.map(i => `import("${ i }")`).join('\n') };
|
|
|
|
`;
|
2021-08-01 17:05:33 +02:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
return {
|
2020-01-16 19:55:54 +01:00
|
|
|
...development,
|
2021-05-07 05:51:03 +02:00
|
|
|
node: {
|
|
|
|
// Mock out the NodeFS module: The opus decoder imports this wrongly.
|
|
|
|
fs: 'empty',
|
|
|
|
},
|
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
entry: {
|
2020-04-05 01:55:36 +02:00
|
|
|
"bundle": "./src/vector/index.ts",
|
2021-07-06 21:33:01 +02:00
|
|
|
"mobileguide": "./src/vector/mobile_guide/index.ts",
|
2020-03-18 22:47:56 +01:00
|
|
|
"jitsi": "./src/vector/jitsi/index.ts",
|
2021-09-24 20:51:02 +02:00
|
|
|
"usercontent": "./node_modules/matrix-react-sdk/src/usercontent/index.ts",
|
2021-08-12 18:32:13 +02:00
|
|
|
...(useHMR ? {} : cssThemes),
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
optimization: {
|
|
|
|
// Put all of our CSS into one useful place - this is needed for MiniCssExtractPlugin.
|
|
|
|
// Previously we used a different extraction plugin that did this magic for us, but
|
|
|
|
// now we need to consider that the CSS needs to be bundled up together.
|
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
styles: {
|
|
|
|
name: 'styles',
|
2020-01-16 19:33:55 +01:00
|
|
|
test: /\.css$/,
|
|
|
|
enforce: true,
|
2020-01-15 20:19:45 +01:00
|
|
|
// Do not add `chunks: 'all'` here because you'll break the app entry point.
|
|
|
|
},
|
2020-03-25 13:41:33 +01:00
|
|
|
default: {
|
|
|
|
reuseExistingChunk: true,
|
|
|
|
},
|
2019-12-24 03:48:19 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2020-01-16 19:47:16 +01:00
|
|
|
// This fixes duplicate files showing up in chrome with sourcemaps enabled.
|
|
|
|
// See https://github.com/webpack/webpack/issues/7128 for more info.
|
2021-08-03 18:38:00 +02:00
|
|
|
namedModules: false,
|
2020-01-16 19:47:16 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
// Minification is normally enabled by default for webpack in production mode, but
|
|
|
|
// we use a CSS optimizer too and need to manage it ourselves.
|
2021-11-03 14:19:21 +01:00
|
|
|
minimize: enableMinification,
|
|
|
|
minimizer: enableMinification ? [new TerserPlugin({}), new OptimizeCSSAssetsPlugin({})] : [],
|
2021-04-19 16:49:05 +02:00
|
|
|
|
|
|
|
// Set the value of `process.env.NODE_ENV` for libraries like React
|
|
|
|
// See also https://v4.webpack.js.org/configuration/optimization/#optimizationnodeenv
|
|
|
|
nodeEnv,
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
resolve: {
|
|
|
|
// We define an alternative import path so we can safely use src/ across the react-sdk
|
|
|
|
// and js-sdk. We already import from src/ where possible to ensure our source maps are
|
|
|
|
// extremely accurate (and because we're capable of compiling the layers manually rather
|
|
|
|
// than relying on partially-mangled output from babel), though we do need to fix the
|
|
|
|
// package level import (stuff like `import {Thing} from "matrix-js-sdk"` for example).
|
|
|
|
// We can't use the aliasing down below to point at src/ because that'll fail to resolve
|
|
|
|
// the package.json for the dependency. Instead, we rely on the package.json of each
|
|
|
|
// layer to have our custom alternate fields to load things in the right order. These are
|
|
|
|
// the defaults of webpack prepended with `matrix_src_`.
|
|
|
|
mainFields: ['matrix_src_browser', 'matrix_src_main', 'browser', 'main'],
|
2020-01-16 19:33:55 +01:00
|
|
|
aliasFields: ['matrix_src_browser', 'browser'],
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-16 19:33:55 +01:00
|
|
|
// We need to specify that TS can be resolved without an extension
|
2020-03-12 01:19:03 +01:00
|
|
|
extensions: ['.js', '.json', '.ts', '.tsx'],
|
2020-01-16 19:33:55 +01:00
|
|
|
alias: {
|
2020-01-15 20:19:45 +01:00
|
|
|
// alias any requires to the react module to the one in our path,
|
|
|
|
// otherwise we tend to get the react source included twice when
|
|
|
|
// using `npm link` / `yarn link`.
|
|
|
|
"react": path.resolve(__dirname, 'node_modules/react'),
|
2020-01-16 19:33:55 +01:00
|
|
|
"react-dom": path.resolve(__dirname, 'node_modules/react-dom'),
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-16 19:33:55 +01:00
|
|
|
// same goes for js-sdk - we don't need two copies.
|
|
|
|
"matrix-js-sdk": path.resolve(__dirname, 'node_modules/matrix-js-sdk'),
|
2020-03-23 13:07:26 +01:00
|
|
|
// and prop-types and sanitize-html
|
|
|
|
"prop-types": path.resolve(__dirname, 'node_modules/prop-types'),
|
|
|
|
"sanitize-html": path.resolve(__dirname, 'node_modules/sanitize-html'),
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-16 19:33:55 +01:00
|
|
|
// Define a variable so the i18n stuff can load
|
|
|
|
"$webapp": path.resolve(__dirname, 'webapp'),
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
2019-12-24 03:48:19 +01:00
|
|
|
},
|
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
module: {
|
|
|
|
noParse: [
|
|
|
|
// for cross platform compatibility use [\\\/] as the path separator
|
|
|
|
// this ensures that the regex trips on both Windows and *nix
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
// don't parse the languages within highlight.js. They cause stack
|
|
|
|
// overflows (https://github.com/webpack/webpack/issues/1721), and
|
|
|
|
// there is no need for webpack to parse them - they can just be
|
|
|
|
// included as-is.
|
2021-06-10 16:19:38 +02:00
|
|
|
/highlight\.js[\\/]lib[\\/]languages/,
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
// olm takes ages for webpack to process, and it's already heavily
|
|
|
|
// optimised, so there is little to gain by us uglifying it.
|
2021-06-10 16:19:38 +02:00
|
|
|
/olm[\\/](javascript[\\/])?olm\.js$/,
|
2020-01-15 20:19:45 +01:00
|
|
|
],
|
2020-01-16 17:25:10 +01:00
|
|
|
rules: [
|
2021-08-12 18:32:13 +02:00
|
|
|
useHMR && {
|
2021-08-01 16:28:38 +02:00
|
|
|
test: /devcss\.ts$/,
|
|
|
|
loader: 'string-replace-loader',
|
|
|
|
options: {
|
|
|
|
search: '"use theming";',
|
|
|
|
replace: getThemesImports(),
|
|
|
|
},
|
|
|
|
},
|
2021-07-12 19:43:21 +02:00
|
|
|
{
|
|
|
|
test: /\.worker\.ts$/,
|
|
|
|
loader: "worker-loader",
|
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
{
|
|
|
|
test: /\.(ts|js)x?$/,
|
2020-01-20 17:55:07 +01:00
|
|
|
include: (f) => {
|
2020-01-20 19:20:41 +01:00
|
|
|
// our own source needs babel-ing
|
|
|
|
if (f.startsWith(path.resolve(__dirname, 'src'))) return true;
|
|
|
|
|
2020-01-20 17:55:07 +01:00
|
|
|
// we use the original source files of react-sdk and js-sdk, so we need to
|
2020-01-20 19:20:41 +01:00
|
|
|
// run them through babel. Because the path tested is the resolved, absolute
|
|
|
|
// path, these could be anywhere thanks to yarn link. We must also not
|
|
|
|
// include node modules inside these modules, so we add 'src'.
|
2020-01-21 02:09:48 +01:00
|
|
|
if (f.startsWith(reactSdkSrcDir)) return true;
|
|
|
|
if (f.startsWith(jsSdkSrcDir)) return true;
|
2020-01-20 19:20:41 +01:00
|
|
|
|
2020-01-20 17:55:07 +01:00
|
|
|
// but we can't run all of our dependencies through babel (many of them still
|
|
|
|
// use module.exports which breaks if babel injects an 'include' for its
|
|
|
|
// polyfills: probably fixable but babeling all our dependencies is probably
|
2020-01-20 19:20:41 +01:00
|
|
|
// not necessary anyway). So, for anything else, don't babel.
|
|
|
|
return false;
|
2020-01-20 17:55:07 +01:00
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
2021-04-15 16:15:48 +02:00
|
|
|
cacheDirectory: true,
|
2021-08-08 20:40:01 +02:00
|
|
|
plugins: [
|
2021-08-12 18:32:13 +02:00
|
|
|
useHMR && require.resolve('react-refresh/babel'),
|
2021-08-08 20:40:01 +02:00
|
|
|
].filter(Boolean),
|
2021-04-15 16:15:48 +02:00
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [
|
2021-08-01 17:05:33 +02:00
|
|
|
MiniCssExtractPlugin.loader,
|
2020-01-15 20:19:45 +01:00
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
importLoaders: 1,
|
|
|
|
sourceMap: true,
|
2021-04-15 16:15:48 +02:00
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
ident: 'postcss',
|
|
|
|
options: {
|
2021-04-16 10:18:32 +02:00
|
|
|
sourceMap: true,
|
|
|
|
plugins: () => [
|
2020-01-15 20:19:45 +01:00
|
|
|
// Note that we use significantly fewer plugins on the plain
|
|
|
|
// CSS parser. If we start to parse plain CSS, we end with all
|
|
|
|
// kinds of nasty problems (like stylesheets not loading).
|
|
|
|
//
|
|
|
|
// You might have noticed that we're also sending regular CSS
|
|
|
|
// through PostCSS. This looks weird, and in fact is probably
|
|
|
|
// not what you'd expect, however in order for our CSS build
|
|
|
|
// to work nicely we have to do this. Because down the line
|
|
|
|
// our SCSS stylesheets reference plain CSS we have to load
|
|
|
|
// the plain CSS through PostCSS so it can find it safely. This
|
|
|
|
// also acts like a babel-for-css by transpiling our (S)CSS
|
|
|
|
// down/up to the right browser support (prefixes, etc).
|
|
|
|
// Further, if we don't do this then PostCSS assumes that our
|
|
|
|
// plain CSS is SCSS and it really doesn't like that, even
|
|
|
|
// though plain CSS should be compatible. The chunking options
|
|
|
|
// at the top of this webpack config help group the SCSS and
|
|
|
|
// plain CSS together for the bundler.
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
require("postcss-simple-vars")(),
|
|
|
|
require("postcss-strip-inline-comments")(),
|
2020-04-07 11:48:56 +02:00
|
|
|
require("postcss-hexrgba")(),
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
// It's important that this plugin is last otherwise we end
|
|
|
|
// up with broken CSS.
|
2021-08-01 16:28:38 +02:00
|
|
|
require('postcss-preset-env')({ stage: 3, browsers: 'last 2 versions' }),
|
2020-01-15 20:19:45 +01:00
|
|
|
],
|
2021-04-16 10:18:32 +02:00
|
|
|
parser: "postcss-scss",
|
2020-01-15 20:19:45 +01:00
|
|
|
"local-plugins": true,
|
|
|
|
},
|
2019-12-24 03:48:19 +01:00
|
|
|
},
|
2021-04-15 16:15:48 +02:00
|
|
|
],
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
use: [
|
2021-08-01 16:28:38 +02:00
|
|
|
/**
|
|
|
|
* This code is hopeful that no .scss outside of our themes will be directly imported in any
|
|
|
|
* of the JS/TS files.
|
|
|
|
* Should be MUCH better with webpack 5, but we're stuck to this solution for now.
|
|
|
|
*/
|
2021-08-12 18:32:13 +02:00
|
|
|
useHMR ? {
|
2021-08-02 22:27:13 +02:00
|
|
|
loader: 'style-loader',
|
|
|
|
/**
|
|
|
|
* If we refactor the `theme.js` in `matrix-react-sdk` a little bit,
|
|
|
|
* we could try using `lazyStyleTag` here to add and remove styles on demand,
|
|
|
|
* that would nicely resolve issues of race conditions for themes,
|
|
|
|
* at least for development purposes.
|
|
|
|
*/
|
|
|
|
options: {
|
|
|
|
|
2021-08-01 16:28:38 +02:00
|
|
|
insert: function insertBeforeAt(element) {
|
|
|
|
const parent = document.querySelector('head');
|
2021-08-02 22:27:13 +02:00
|
|
|
// We're in iframe
|
|
|
|
if (!window.MX_DEV_ACTIVE_THEMES) {
|
|
|
|
parent.appendChild(element);
|
|
|
|
return;
|
2021-08-01 16:28:38 +02:00
|
|
|
}
|
2021-08-02 22:27:13 +02:00
|
|
|
// Properly disable all other instances of themes
|
|
|
|
element.disabled = true;
|
|
|
|
element.onload = () => {
|
|
|
|
element.disabled = true;
|
|
|
|
};
|
|
|
|
const theme = window.MX_DEV_ACTIVE_THEMES[window.MX_insertedThemeStylesCounter];
|
|
|
|
element.setAttribute('data-mx-theme', theme);
|
|
|
|
window.MX_insertedThemeStylesCounter++;
|
2021-08-01 16:28:38 +02:00
|
|
|
parent.appendChild(element);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} : MiniCssExtractPlugin.loader,
|
2020-01-15 20:19:45 +01:00
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
importLoaders: 1,
|
|
|
|
sourceMap: true,
|
2021-04-15 16:15:48 +02:00
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
ident: 'postcss',
|
|
|
|
options: {
|
2021-04-16 10:18:32 +02:00
|
|
|
sourceMap: true,
|
|
|
|
plugins: () => [
|
2020-01-15 20:19:45 +01:00
|
|
|
// Note that we use slightly different plugins for SCSS.
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
require('postcss-import')(),
|
2020-05-14 19:46:16 +02:00
|
|
|
require("postcss-mixins")(),
|
2020-01-15 20:19:45 +01:00
|
|
|
require("postcss-simple-vars")(),
|
|
|
|
require("postcss-extend")(),
|
|
|
|
require("postcss-nested")(),
|
|
|
|
require("postcss-easings")(),
|
|
|
|
require("postcss-strip-inline-comments")(),
|
2020-04-07 11:48:56 +02:00
|
|
|
require("postcss-hexrgba")(),
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
// It's important that this plugin is last otherwise we end
|
|
|
|
// up with broken CSS.
|
2021-08-01 16:28:38 +02:00
|
|
|
require('postcss-preset-env')({ stage: 3, browsers: 'last 2 versions' }),
|
2020-01-15 20:19:45 +01:00
|
|
|
],
|
2021-04-16 10:18:32 +02:00
|
|
|
parser: "postcss-scss",
|
2020-01-15 20:19:45 +01:00
|
|
|
"local-plugins": true,
|
|
|
|
},
|
2019-01-01 00:22:47 +01:00
|
|
|
},
|
2021-04-15 16:15:48 +02:00
|
|
|
],
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.wasm$/,
|
|
|
|
loader: "file-loader",
|
|
|
|
type: "javascript/auto", // https://github.com/webpack/webpack/issues/6725
|
|
|
|
options: {
|
|
|
|
name: '[name].[hash:7].[ext]',
|
|
|
|
outputPath: '.',
|
2019-12-24 03:48:19 +01:00
|
|
|
},
|
|
|
|
},
|
2021-03-12 06:06:11 +01:00
|
|
|
{
|
2021-03-24 01:29:26 +01:00
|
|
|
// Fix up the name of the opus-recorder worker (react-sdk dependency).
|
|
|
|
// We more or less just want it to be clear it's for opus and not something else.
|
2021-03-12 06:06:11 +01:00
|
|
|
test: /encoderWorker\.min\.js$/,
|
|
|
|
loader: "file-loader",
|
|
|
|
type: "javascript/auto", // https://github.com/webpack/webpack/issues/6725
|
|
|
|
options: {
|
|
|
|
// We deliberately override the name so it makes sense in debugging
|
|
|
|
name: 'opus-encoderWorker.min.[hash:7].[ext]',
|
|
|
|
outputPath: '.',
|
|
|
|
},
|
|
|
|
},
|
2021-08-04 23:08:52 +02:00
|
|
|
{
|
|
|
|
// Special case the recorder worklet as it can't end up HMR'd, but the worker-loader
|
|
|
|
// isn't good enough for us. Note that the worklet-loader is listed as "do not use",
|
|
|
|
// however it seems to work fine for our purposes.
|
|
|
|
test: /RecorderWorklet\.ts$/,
|
|
|
|
type: "javascript/auto",
|
|
|
|
use: [ // executed last -> first, for some reason.
|
|
|
|
{
|
|
|
|
loader: "worklet-loader",
|
|
|
|
options: {
|
|
|
|
// Override name so we know what it is in the output.
|
|
|
|
name: 'recorder-worklet.[hash:7].js',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// TS -> JS because the worklet-loader won't do this for us.
|
|
|
|
loader: "babel-loader",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-05-07 05:51:03 +02:00
|
|
|
{
|
|
|
|
// This is from the same place as the encoderWorker above, but only needed
|
|
|
|
// for Safari support.
|
|
|
|
test: /decoderWorker\.min\.js$/,
|
|
|
|
loader: "file-loader",
|
|
|
|
type: "javascript/auto", // https://github.com/webpack/webpack/issues/6725
|
|
|
|
options: {
|
|
|
|
// We deliberately override the name so it makes sense in debugging
|
|
|
|
name: 'opus-decoderWorker.min.[hash:7].[ext]',
|
|
|
|
outputPath: '.',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// This is from the same place as the encoderWorker above, but only needed
|
|
|
|
// for Safari support.
|
|
|
|
test: /decoderWorker\.min\.wasm$/,
|
|
|
|
loader: "file-loader",
|
|
|
|
type: "javascript/auto", // https://github.com/webpack/webpack/issues/6725
|
|
|
|
options: {
|
|
|
|
// We deliberately don't change the name because the decoderWorker has this
|
|
|
|
// hardcoded. This is here to avoid the default wasm rule from adding a hash.
|
|
|
|
name: 'decoderWorker.min.wasm',
|
|
|
|
outputPath: '.',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// This is from the same place as the encoderWorker above, but only needed
|
|
|
|
// for Safari support.
|
|
|
|
test: /waveWorker\.min\.js$/,
|
|
|
|
loader: "file-loader",
|
|
|
|
type: "javascript/auto", // https://github.com/webpack/webpack/issues/6725
|
|
|
|
options: {
|
|
|
|
// We deliberately override the name so it makes sense in debugging
|
|
|
|
name: 'wave-encoderWorker.min.[hash:7].[ext]',
|
|
|
|
outputPath: '.',
|
|
|
|
},
|
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
{
|
2020-10-01 15:05:07 +02:00
|
|
|
// cache-bust languages.json file placed in
|
2020-11-25 18:01:19 +01:00
|
|
|
// element-web/webapp/i18n during build by copy-res.js
|
2020-10-01 15:05:07 +02:00
|
|
|
test: /\.*languages.json$/,
|
2020-01-15 20:19:45 +01:00
|
|
|
type: "javascript/auto",
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: 'i18n/[name].[hash:7].[ext]',
|
|
|
|
},
|
2019-02-20 09:39:42 +01:00
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
{
|
|
|
|
test: /\.(gif|png|svg|ttf|woff|woff2|xml|ico)$/,
|
|
|
|
// Use a content-based hash in the name so that we can set a long cache
|
|
|
|
// lifetime for assets while still delivering changes quickly.
|
|
|
|
oneOf: [
|
|
|
|
{
|
|
|
|
// Assets referenced in CSS files
|
|
|
|
issuer: /\.(scss|css)$/,
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
esModule: false,
|
|
|
|
name: '[name].[hash:7].[ext]',
|
2020-12-09 18:01:40 +01:00
|
|
|
outputPath: getAssetOutputPath,
|
2020-01-15 20:19:45 +01:00
|
|
|
publicPath: function(url, resourcePath) {
|
|
|
|
// CSS image usages end up in the `bundles/[hash]` output
|
|
|
|
// directory, so we adjust the final path to navigate up
|
|
|
|
// twice.
|
2020-12-09 18:01:40 +01:00
|
|
|
const outputPath = getAssetOutputPath(url, resourcePath);
|
2020-01-15 20:19:45 +01:00
|
|
|
return toPublicPath(path.join("../..", outputPath));
|
|
|
|
},
|
2019-01-18 22:47:14 +01:00
|
|
|
},
|
2019-01-18 03:59:06 +01:00
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
{
|
|
|
|
// Assets referenced in HTML and JS files
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
esModule: false,
|
|
|
|
name: '[name].[hash:7].[ext]',
|
2020-12-09 18:01:40 +01:00
|
|
|
outputPath: getAssetOutputPath,
|
2020-01-15 20:19:45 +01:00
|
|
|
publicPath: function(url, resourcePath) {
|
2020-12-09 18:01:40 +01:00
|
|
|
const outputPath = getAssetOutputPath(url, resourcePath);
|
2020-01-15 20:19:45 +01:00
|
|
|
return toPublicPath(outputPath);
|
|
|
|
},
|
2019-05-28 15:31:20 +02:00
|
|
|
},
|
2019-01-18 03:59:06 +01:00
|
|
|
},
|
2020-01-15 20:19:45 +01:00
|
|
|
],
|
|
|
|
},
|
2021-08-01 17:05:33 +02:00
|
|
|
].filter(Boolean),
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
2015-12-02 15:54:26 +01:00
|
|
|
|
2020-10-01 15:04:32 +02:00
|
|
|
plugins: [
|
|
|
|
// This exports our CSS using the splitChunks and loaders above.
|
|
|
|
new MiniCssExtractPlugin({
|
2021-08-12 18:32:13 +02:00
|
|
|
filename: useHMR ? "bundles/[name].css" : "bundles/[hash]/[name].css",
|
|
|
|
chunkFilename: useHMR ? "bundles/[name].css" : "bundles/[hash]/[name].css",
|
2020-10-01 15:04:32 +02:00
|
|
|
ignoreOrder: false, // Enable to remove warnings about conflicting order
|
|
|
|
}),
|
|
|
|
|
|
|
|
// This is the app's main entry point.
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/vector/index.html',
|
|
|
|
|
|
|
|
// we inject the links ourselves via the template, because
|
|
|
|
// HtmlWebpackPlugin will screw up our formatting like the names
|
|
|
|
// of the themes and which chunks we actually care about.
|
|
|
|
inject: false,
|
|
|
|
excludeChunks: ['mobileguide', 'usercontent', 'jitsi'],
|
2021-05-18 12:35:51 +02:00
|
|
|
minify: false,
|
2021-04-22 11:22:52 +02:00
|
|
|
templateParameters: {
|
2021-04-15 16:15:48 +02:00
|
|
|
og_image_url: ogImageUrl,
|
2020-10-01 15:04:32 +02:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
|
|
|
|
// This is the jitsi widget wrapper (embedded, so isolated stack)
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/vector/jitsi/index.html',
|
|
|
|
filename: 'jitsi.html',
|
2021-05-18 12:35:51 +02:00
|
|
|
minify: false,
|
2020-10-01 15:04:32 +02:00
|
|
|
chunks: ['jitsi'],
|
|
|
|
}),
|
|
|
|
|
|
|
|
// This is the mobile guide's entry point (separate for faster mobile loading)
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/vector/mobile_guide/index.html',
|
|
|
|
filename: 'mobile_guide/index.html',
|
2021-05-18 12:35:51 +02:00
|
|
|
minify: false,
|
2020-10-01 15:04:32 +02:00
|
|
|
chunks: ['mobileguide'],
|
|
|
|
}),
|
|
|
|
|
|
|
|
// These are the static error pages for when the javascript env is *really unsupported*
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/vector/static/unable-to-load.html',
|
|
|
|
filename: 'static/unable-to-load.html',
|
2021-05-18 12:35:51 +02:00
|
|
|
minify: false,
|
2020-10-01 15:04:32 +02:00
|
|
|
chunks: [],
|
|
|
|
}),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/vector/static/incompatible-browser.html',
|
|
|
|
filename: 'static/incompatible-browser.html',
|
2021-05-18 12:35:51 +02:00
|
|
|
minify: false,
|
2020-10-01 15:04:32 +02:00
|
|
|
chunks: [],
|
|
|
|
}),
|
|
|
|
|
|
|
|
// This is the usercontent sandbox's entry point (separate for iframing)
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './node_modules/matrix-react-sdk/src/usercontent/index.html',
|
|
|
|
filename: 'usercontent/index.html',
|
2021-05-18 12:35:51 +02:00
|
|
|
minify: false,
|
2020-10-01 15:04:32 +02:00
|
|
|
chunks: ['usercontent'],
|
|
|
|
}),
|
2021-03-09 22:17:51 +01:00
|
|
|
|
2021-04-22 13:09:50 +02:00
|
|
|
new HtmlWebpackInjectPreload({
|
2021-06-10 14:02:21 +02:00
|
|
|
files: [{ match: /.*Inter.*\.woff2$/ }],
|
2021-04-22 13:09:50 +02:00
|
|
|
}),
|
2021-08-25 17:57:46 +02:00
|
|
|
useHMR && new ReactRefreshWebpackPlugin(fullPageErrors ? undefined : { overlay: { entry: false } }),
|
2021-04-22 13:09:50 +02:00
|
|
|
|
2021-10-20 12:18:47 +02:00
|
|
|
// upload to sentry if sentry env is present
|
|
|
|
process.env.SENTRY_DSN &&
|
|
|
|
new SentryCliPlugin({
|
2021-10-22 16:06:14 +02:00
|
|
|
release: process.env.VERSION,
|
2021-11-03 14:19:21 +01:00
|
|
|
include: "./webapp/bundles",
|
2021-10-20 12:18:47 +02:00
|
|
|
}),
|
2021-10-22 16:06:14 +02:00
|
|
|
new webpack.EnvironmentPlugin(['VERSION']),
|
2021-08-08 20:40:01 +02:00
|
|
|
].filter(Boolean),
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-16 19:33:55 +01:00
|
|
|
output: {
|
|
|
|
path: path.join(__dirname, "webapp"),
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
// The generated JS (and CSS, from the extraction plugin) are put in a
|
|
|
|
// unique subdirectory for the build. There will only be one such
|
|
|
|
// 'bundle' directory in the generated tarball; however, hosting
|
|
|
|
// servers can collect 'bundles' from multiple versions into one
|
|
|
|
// directory and symlink it into place - this allows users who loaded
|
|
|
|
// an older version of the application to continue to access webpack
|
|
|
|
// chunks even after the app is redeployed.
|
|
|
|
filename: "bundles/[hash]/[name].js",
|
|
|
|
chunkFilename: "bundles/[hash]/[name].js",
|
2020-01-16 19:33:55 +01:00
|
|
|
},
|
2019-12-24 03:48:19 +01:00
|
|
|
|
2020-01-15 20:19:45 +01:00
|
|
|
// configuration for the webpack-dev-server
|
|
|
|
devServer: {
|
|
|
|
// serve unwebpacked assets from webapp.
|
2021-08-01 16:28:38 +02:00
|
|
|
contentBase: [
|
|
|
|
'./webapp',
|
|
|
|
],
|
2017-02-03 12:40:07 +01:00
|
|
|
|
2020-01-24 23:33:17 +01:00
|
|
|
// Only output errors, warnings, or new compilations.
|
|
|
|
// This hides the massive list of modules.
|
|
|
|
stats: 'minimal',
|
2021-08-01 16:28:38 +02:00
|
|
|
hotOnly: true,
|
|
|
|
inline: true,
|
2020-01-15 20:19:45 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
2019-01-18 03:59:06 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge assets found via CSS and imports into a single tree, while also preserving
|
2020-12-09 18:01:40 +01:00
|
|
|
* directories under e.g. `res` or similar.
|
2019-01-18 03:59:06 +01:00
|
|
|
*
|
|
|
|
* @param {string} url The adjusted name of the file, such as `warning.1234567.svg`.
|
|
|
|
* @param {string} resourcePath The absolute path to the source file with unmodified name.
|
|
|
|
* @return {string} The returned paths will look like `img/warning.1234567.svg`.
|
|
|
|
*/
|
2020-12-09 18:01:40 +01:00
|
|
|
function getAssetOutputPath(url, resourcePath) {
|
|
|
|
// `res` is the parent dir for our own assets in various layers
|
|
|
|
// `dist` is the parent dir for KaTeX assets
|
|
|
|
const prefix = /^.*[/\\](dist|res)[/\\]/;
|
|
|
|
if (!resourcePath.match(prefix)) {
|
|
|
|
throw new Error(`Unexpected asset path: ${resourcePath}`);
|
|
|
|
}
|
|
|
|
let outputDir = path.dirname(resourcePath).replace(prefix, "");
|
|
|
|
if (resourcePath.includes("KaTeX")) {
|
|
|
|
// Add a clearly named directory segment, rather than leaving the KaTeX
|
|
|
|
// assets loose in each asset type directory.
|
|
|
|
outputDir = path.join(outputDir, "KaTeX");
|
|
|
|
}
|
2019-01-18 03:59:06 +01:00
|
|
|
return path.join(outputDir, path.basename(url));
|
|
|
|
}
|
2019-01-19 00:29:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert path to public path format, which always uses forward slashes, since it will
|
|
|
|
* be placed directly into things like CSS files.
|
|
|
|
*
|
|
|
|
* @param {string} path Some path to a file.
|
2021-04-15 16:15:48 +02:00
|
|
|
* @returns {string} converted path
|
2019-01-19 00:29:25 +01:00
|
|
|
*/
|
|
|
|
function toPublicPath(path) {
|
|
|
|
return path.replace(/\\/g, '/');
|
|
|
|
}
|