Merge pull request #2518 from vector-im/rav/ignore_olm_if_missing
Avoid errors if olm is missingpull/2528/head
commit
5e84a6c39e
|
@ -102,3 +102,12 @@ module.exports = {
|
||||||
],
|
],
|
||||||
devtool: 'source-map'
|
devtool: 'source-map'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// olm is an optional dependency. Ignore it if it's not installed, to avoid a
|
||||||
|
// scary-looking error.
|
||||||
|
try {
|
||||||
|
require('olm');
|
||||||
|
} catch (e) {
|
||||||
|
console.log("Olm is not installed; not shipping it");
|
||||||
|
delete(module.exports.entry["olm"]);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue