1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Remove browserify builds (#3759)

This commit is contained in:
Michael Telatynski
2023-10-03 10:23:11 +01:00
committed by GitHub
parent 5c45c980e9
commit 68317ac836
16 changed files with 18 additions and 1375 deletions

View File

@@ -40,8 +40,5 @@ if (indexedDB) {
matrixcs.setCryptoStoreFactory(() => new matrixcs.IndexedDBCryptoStore(indexedDB!, "matrix-js-sdk:crypto"));
}
// We export 3 things to make browserify happy as well as downstream projects.
// It's awkward, but required.
export * from "./matrix";
export default matrixcs; // keep export for browserify package deps
globalThis.matrixcs = matrixcs;