mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix webpack to babel js-sdk & react-sdk but no other deps
This was happening implicitly in our dev setups and the CI build because of the comment on the last line.
This commit is contained in:
parent
119802d00f
commit
922ed597d6
@ -109,7 +109,23 @@ module.exports = (env, argv) => {
|
|||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.(ts|js)x?$/,
|
test: /\.(ts|js)x?$/,
|
||||||
exclude: /node_modules/,
|
include: (f) => {
|
||||||
|
// we use the original source files of react-sdk and js-sdk, so we need to
|
||||||
|
// run them through babel.
|
||||||
|
if (f.startsWith(path.resolve(__dirname, 'node_modules', 'matrix-js-sdk'))) return true;
|
||||||
|
if (f.startsWith(path.resolve(__dirname, 'node_modules', 'matrix-react-sdk'))) return true;
|
||||||
|
// 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
|
||||||
|
// not necessary anyway).
|
||||||
|
if (f.startsWith(path.resolve(__dirname, 'node_modules'))) return false;
|
||||||
|
// anything else gets babeled (our own source files, and also modules that
|
||||||
|
// are yarn linked from somewhere else because this tests the absolute,
|
||||||
|
// resolved path, so react-sdk and js-sdk fall under this case in a standard
|
||||||
|
// dev setup. This will presumably start running any other module through
|
||||||
|
// babel if yarn linked... caveat emptor.
|
||||||
|
return true;
|
||||||
|
},
|
||||||
loader: 'babel-loader',
|
loader: 'babel-loader',
|
||||||
options: {
|
options: {
|
||||||
cacheDirectory: true
|
cacheDirectory: true
|
||||||
|
Loading…
Reference in New Issue
Block a user