mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 11:15:53 +03:00
Merge pull request #3722 from matrix-org/travis/babel7
[BREAKING] Refactor the entire build process for babel@7 and TypeScript (chunk 1 of many)
This commit is contained in:
commit
38e75aaae0
2 changed files with 6 additions and 2 deletions
3
.babelrc
3
.babelrc
|
@ -5,8 +5,7 @@
|
||||||
"targets": {
|
"targets": {
|
||||||
"browsers": [
|
"browsers": [
|
||||||
"last 2 versions"
|
"last 2 versions"
|
||||||
],
|
]
|
||||||
"node": 12
|
|
||||||
},
|
},
|
||||||
"modules": "commonjs"
|
"modules": "commonjs"
|
||||||
}],
|
}],
|
||||||
|
|
|
@ -247,5 +247,10 @@ class _MatrixClientPeg {
|
||||||
if (!global.mxMatrixClientPeg) {
|
if (!global.mxMatrixClientPeg) {
|
||||||
global.mxMatrixClientPeg = new _MatrixClientPeg();
|
global.mxMatrixClientPeg = new _MatrixClientPeg();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We export both because the syntax is slightly different with
|
||||||
|
// our babel changes. We maintain both for backwards compatibility
|
||||||
|
// and for babel to be happy.
|
||||||
|
// TODO: Convert this to a single export
|
||||||
export default global.mxMatrixClientPeg;
|
export default global.mxMatrixClientPeg;
|
||||||
export const MatrixClientPeg = global.mxMatrixClientPeg;
|
export const MatrixClientPeg = global.mxMatrixClientPeg;
|
||||||
|
|
Loading…
Reference in a new issue