From 52ca0908e217c245ab7c7a915af2046e4bd09dec Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 6 Jan 2020 14:55:38 +0000 Subject: [PATCH] Fix the build Run `yarn install` in the js-sdkc and react-sdk installs. We were avoiding this before due to using babel dependencies from riot-web ro build js-sdk, which worked as long as the installed babel versions and plugins were identical. js-sdk has now been upgraded to babel 7 and so that no longer worked. This will probably cause react-sdk & js-sdk to be built an unnecessary number of times. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 3f9e80ee34..ca634be937 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "i18n": "matrix-gen-i18n", "prunei18n": "matrix-prune-i18n", "diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && node scripts/compare-file.js src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json", + "postinstall": "node scripts/yarn-sub.js matrix-js-sdk install && node scripts/yarn-sub.js matrix-react-sdk install", "build:res": "node scripts/copy-res.js", "build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js", "build:compile": "yarn reskindex && babel --source-maps -d lib src",