Skip to content

Commit

Permalink
Transpile @vector-im/compound-web with babel (#25906)
Browse files Browse the repository at this point in the history
  • Loading branch information
germain-gg authored Aug 2, 2023
1 parent 4f790eb commit c6756ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,12 @@ module.exports = (env, argv) => {
if (f.startsWith(reactSdkSrcDir)) return true;
if (f.startsWith(jsSdkSrcDir)) return true;

// Some of the syntax in this package is not understood by
// either webpack or our babel setup.
// When we do get to upgrade our current setup, this should
// probably be removed.
if (f.includes("@vector-im/compound-web")) 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
Expand Down

0 comments on commit c6756ea

Please sign in to comment.