2017-04-21 16:06:52 +02:00
|
|
|
const path = require('path');
|
|
|
|
const webpack = require('webpack');
|
|
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
2016-10-25 18:07:43 +02:00
|
|
|
|
2018-03-14 19:34:26 +01:00
|
|
|
let og_image_url = process.env.RIOT_OG_IMAGE_URL;
|
2019-02-01 20:04:48 +01:00
|
|
|
if (!og_image_url) og_image_url = 'https://riot.im/app/themes/riot/img/logos/riot-im-logo-black-text.png';
|
2018-03-14 19:34:26 +01:00
|
|
|
|
2015-09-25 12:43:28 +02:00
|
|
|
module.exports = {
|
2016-10-26 15:13:36 +02:00
|
|
|
entry: {
|
2018-04-27 16:12:16 +02:00
|
|
|
// Load babel-polyfill first to avoid issues where some imports (namely react)
|
|
|
|
// are potentially loaded before babel-polyfill.
|
|
|
|
"bundle": ["babel-polyfill", "./src/vector/index.js"],
|
2018-04-12 22:59:55 +02:00
|
|
|
"indexeddb-worker": "./src/vector/indexeddb-worker.js",
|
2016-10-26 15:13:36 +02:00
|
|
|
|
2018-09-03 21:38:30 +02:00
|
|
|
"mobileguide": "./src/vector/mobile_guide/index.js",
|
|
|
|
|
2017-01-17 20:14:16 +01:00
|
|
|
// CSS themes
|
2019-02-13 10:45:42 +01:00
|
|
|
"theme-light": "./node_modules/matrix-react-sdk/res/themes/light/css/light.scss",
|
2019-02-11 19:19:19 +01:00
|
|
|
"theme-dark": "./node_modules/matrix-react-sdk/res/themes/dark/css/dark.scss",
|
2016-10-26 15:13:36 +02:00
|
|
|
},
|
2015-09-25 12:43:28 +02:00
|
|
|
module: {
|
2018-04-27 11:32:59 +02:00
|
|
|
rules: [
|
|
|
|
{ enforce: 'pre', test: /\.js$/, use: "source-map-loader", exclude: /node_modules/, },
|
|
|
|
{ test: /\.js$/, use: "babel-loader", include: path.resolve(__dirname, 'src') },
|
2019-01-28 15:09:28 +01:00
|
|
|
{
|
|
|
|
test: /\.wasm$/,
|
|
|
|
loader: "file-loader",
|
|
|
|
type: "javascript/auto", // https://github.com/webpack/webpack/issues/6725
|
|
|
|
options: {
|
|
|
|
name: '[name].[hash:7].[ext]',
|
|
|
|
outputPath: '.',
|
|
|
|
},
|
|
|
|
},
|
2017-01-19 03:48:17 +01:00
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
// 1. postcss-loader turns the SCSS into normal CSS.
|
2019-01-01 00:22:47 +01:00
|
|
|
// 2. css-loader turns the CSS into a JS module whose default
|
|
|
|
// export is a string containing the CSS, while also adding
|
|
|
|
// the images and fonts from CSS as Webpack inputs.
|
2017-01-19 03:48:17 +01:00
|
|
|
// 3. ExtractTextPlugin turns that string into a separate asset.
|
2018-04-27 11:32:59 +02:00
|
|
|
use: ExtractTextPlugin.extract({
|
|
|
|
use: [
|
2019-01-01 00:22:47 +01:00
|
|
|
"css-loader",
|
2018-05-11 19:48:33 +02:00
|
|
|
{
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
options: {
|
|
|
|
config: {
|
2019-01-01 00:22:47 +01:00
|
|
|
path: './postcss.config.js',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-04-27 11:32:59 +02:00
|
|
|
],
|
|
|
|
}),
|
2017-01-19 03:48:17 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
// this works similarly to the scss case, without postcss.
|
|
|
|
test: /\.css$/,
|
2018-04-27 11:32:59 +02:00
|
|
|
use: ExtractTextPlugin.extract({
|
2019-01-01 00:22:47 +01:00
|
|
|
use: "css-loader",
|
2018-04-27 11:32:59 +02:00
|
|
|
}),
|
2017-01-19 03:48:17 +01:00
|
|
|
},
|
2019-02-18 16:12:04 +01:00
|
|
|
{
|
|
|
|
// cache-bust languages.json file placed in
|
|
|
|
// riot-web/webapp/i18n during build by copy-res.js
|
|
|
|
test: /\.*languages.json$/,
|
|
|
|
type: "javascript/auto",
|
2019-02-20 09:39:42 +01:00
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: 'i18n/[name].[hash:7].[ext]',
|
|
|
|
},
|
2019-02-18 16:12:04 +01:00
|
|
|
},
|
2019-01-01 00:22:47 +01:00
|
|
|
{
|
2019-05-19 17:09:47 +02:00
|
|
|
test: /\.(gif|png|svg|ttf|woff|woff2|xml|ico)$/,
|
2019-01-18 03:59:06 +01:00
|
|
|
// 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: [
|
|
|
|
{
|
2019-05-28 15:31:20 +02:00
|
|
|
// Assets referenced in CSS files
|
2019-01-18 22:47:14 +01:00
|
|
|
issuer: /\.(scss|css)$/,
|
2019-01-18 03:59:06 +01:00
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[hash:7].[ext]',
|
|
|
|
outputPath: getImgOutputPath,
|
2019-01-18 22:47:14 +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.
|
2019-01-19 00:29:25 +01:00
|
|
|
const outputPath = getImgOutputPath(url, resourcePath);
|
|
|
|
return toPublicPath(path.join("../..", outputPath));
|
2019-01-18 22:47:14 +01:00
|
|
|
},
|
2019-01-18 03:59:06 +01:00
|
|
|
},
|
2019-01-01 00:22:47 +01:00
|
|
|
},
|
2019-01-18 03:59:06 +01:00
|
|
|
{
|
2019-05-28 15:31:20 +02:00
|
|
|
// Assets referenced in HTML and JS files
|
2019-01-18 03:59:06 +01:00
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[hash:7].[ext]',
|
|
|
|
outputPath: getImgOutputPath,
|
2019-05-28 15:31:20 +02:00
|
|
|
publicPath: function(url, resourcePath) {
|
|
|
|
const outputPath = getImgOutputPath(url, resourcePath);
|
|
|
|
return toPublicPath(outputPath);
|
|
|
|
},
|
2019-01-18 03:59:06 +01:00
|
|
|
},
|
2019-01-01 00:22:47 +01:00
|
|
|
},
|
2019-01-18 03:59:06 +01:00
|
|
|
],
|
2019-01-01 00:22:47 +01:00
|
|
|
},
|
2016-03-24 23:51:50 +01:00
|
|
|
],
|
|
|
|
noParse: [
|
2017-04-22 15:02:18 +02:00
|
|
|
// for cross platform compatibility use [\\\/] as the path separator
|
|
|
|
// this ensures that the regex trips on both Windows and *nix
|
|
|
|
|
2016-03-24 23:51:50 +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.
|
2017-04-22 15:02:18 +02:00
|
|
|
/highlight\.js[\\\/]lib[\\\/]languages/,
|
2016-10-26 15:13:36 +02:00
|
|
|
|
|
|
|
// olm takes ages for webpack to process, and it's already heavily
|
|
|
|
// optimised, so there is little to gain by us uglifying it.
|
2017-04-22 15:02:18 +02:00
|
|
|
/olm[\\\/](javascript[\\\/])?olm\.js$/,
|
2016-03-24 23:51:50 +01:00
|
|
|
],
|
2015-09-25 12:43:28 +02:00
|
|
|
},
|
2015-10-15 15:40:36 +02:00
|
|
|
output: {
|
2016-11-08 16:46:21 +01:00
|
|
|
path: path.join(__dirname, "webapp"),
|
2017-01-17 12:58:30 +01:00
|
|
|
|
2019-01-01 00:22:47 +01:00
|
|
|
// The generated JS (and CSS, from the ExtractTextPlugin) are put in a
|
2017-01-17 12:58:30 +01:00
|
|
|
// 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",
|
2015-10-15 15:40:36 +02:00
|
|
|
devtoolModuleFilenameTemplate: function(info) {
|
|
|
|
// Reading input source maps gives only relative paths here for
|
|
|
|
// everything. Until I figure out how to fix this, this is a
|
|
|
|
// workaround.
|
|
|
|
// We use the relative resource path with any '../'s on the front
|
|
|
|
// removed which gives a tree with matrix-react-sdk and vector
|
|
|
|
// trees smashed together, but this fixes everything being under
|
|
|
|
// various levels of '.' and '..'
|
2015-10-23 11:16:00 +02:00
|
|
|
// Also, sometimes the resource path is absolute.
|
|
|
|
return path.relative(process.cwd(), info.resourcePath).replace(/^[\/\.]*/, '');
|
2017-04-21 16:06:52 +02:00
|
|
|
},
|
2015-10-15 15:40:36 +02:00
|
|
|
},
|
2015-09-25 12:43:28 +02:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
2019-03-12 12:06:57 +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`.
|
2016-11-18 18:52:44 +01:00
|
|
|
"react": path.resolve('./node_modules/react'),
|
|
|
|
"react-dom": path.resolve('./node_modules/react-dom'),
|
2015-12-02 15:54:26 +01:00
|
|
|
|
2016-04-13 18:41:23 +02:00
|
|
|
// same goes for js-sdk
|
|
|
|
"matrix-js-sdk": path.resolve('./node_modules/matrix-js-sdk'),
|
2019-03-01 12:32:37 +01:00
|
|
|
|
2019-03-01 13:03:19 +01:00
|
|
|
"$webapp": path.resolve('./webapp'),
|
2015-09-25 12:43:28 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
2015-10-14 10:20:18 +02:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
2017-04-21 16:06:52 +02:00
|
|
|
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
|
|
|
|
},
|
2015-12-02 15:54:26 +01:00
|
|
|
}),
|
2017-04-21 20:00:24 +02:00
|
|
|
new ExtractTextPlugin("bundles/[hash]/[name].css", {
|
|
|
|
allChunks: true,
|
|
|
|
}),
|
2016-10-25 18:07:43 +02:00
|
|
|
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/vector/index.html',
|
2016-10-26 17:52:26 +02:00
|
|
|
|
|
|
|
// we inject the links ourselves via the template, because
|
|
|
|
// HtmlWebpackPlugin wants to put the script tags either at the
|
|
|
|
// bottom of <head> or the bottom of <body>, and I'm a bit scared
|
|
|
|
// about moving them.
|
|
|
|
inject: false,
|
2018-09-05 16:07:44 +02:00
|
|
|
excludeChunks: ['mobileguide'],
|
2018-03-14 19:34:26 +01:00
|
|
|
vars: {
|
|
|
|
og_image_url: og_image_url,
|
|
|
|
},
|
2015-12-03 19:28:50 +01:00
|
|
|
}),
|
2018-09-03 21:38:30 +02:00
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/vector/mobile_guide/index.html',
|
|
|
|
filename: 'mobile_guide/index.html',
|
|
|
|
chunks: ['mobileguide'],
|
|
|
|
}),
|
2015-09-25 12:43:28 +02:00
|
|
|
],
|
2019-02-01 00:03:16 +01:00
|
|
|
devtool: 'source-map',
|
2016-11-03 15:58:30 +01:00
|
|
|
|
|
|
|
// configuration for the webpack-dev-server
|
|
|
|
devServer: {
|
2016-11-08 16:46:21 +01:00
|
|
|
// serve unwebpacked assets from webapp.
|
|
|
|
contentBase: './webapp',
|
2017-02-03 12:40:07 +01:00
|
|
|
|
|
|
|
stats: {
|
|
|
|
// don't fill the console up with a mahoosive list of modules
|
|
|
|
chunks: false,
|
|
|
|
},
|
2018-10-05 14:56:37 +02:00
|
|
|
|
|
|
|
// hot mdule replacement doesn't work (I think we'd need react-hot-reload?)
|
|
|
|
// so webpack-dev-server reloads the page on every update which is quite
|
|
|
|
// tedious in Riot since that can take a while.
|
|
|
|
hot: false,
|
|
|
|
inline: false,
|
2016-11-03 15:58:30 +01:00
|
|
|
},
|
2015-09-25 12:43:28 +02:00
|
|
|
};
|
2019-01-18 03:59:06 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge assets found via CSS and imports into a single tree, while also preserving
|
|
|
|
* directories under `res`.
|
|
|
|
*
|
|
|
|
* @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`.
|
|
|
|
*/
|
|
|
|
function getImgOutputPath(url, resourcePath) {
|
2019-01-18 22:17:14 +01:00
|
|
|
const prefix = /^.*[/\\]res[/\\]/;
|
2019-01-18 03:59:06 +01:00
|
|
|
const outputDir = path.dirname(resourcePath).replace(prefix, "");
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
function toPublicPath(path) {
|
|
|
|
return path.replace(/\\/g, '/');
|
|
|
|
}
|