1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

[BREAKING] Refactor the entire build process

For https://github.com/vector-im/riot-web/issues/8880

Features:
* Export modern JS
* Export typings
* Export source maps that actually mean something
* No longer supporting minified builds

This is a step towards being a boring SDK and not anticipating an install location. 

This commit requires a major version bump of the SDK.
This commit is contained in:
Travis Ralston
2019-12-10 13:25:07 -07:00
parent 01f0dd4498
commit 4bdabbfbe9
9 changed files with 208 additions and 357 deletions

View File

@@ -31,5 +31,5 @@ if (indexedDB) {
);
}
module.exports = matrixcs; // keep export for browserify package deps
export default matrixcs; // keep export for browserify package deps
global.matrixcs = matrixcs;