2019-03-11 21:23:07 +03:00
|
|
|
#!/bin/bash
|
2017-06-08 15:52:52 +03:00
|
|
|
|
2022-03-11 16:00:56 +03:00
|
|
|
# This installs other Matrix dependencies that are often
|
|
|
|
# developed in parallel with react-sdk, using fetchdep.sh
|
|
|
|
# for branch matching.
|
|
|
|
# This will set up a working react-sdk environment, so is
|
|
|
|
# used for running react-sdk standalone tests. To set up a
|
|
|
|
# build of element-web, use layered.sh
|
|
|
|
|
2017-06-08 15:52:52 +03:00
|
|
|
set -ex
|
2019-03-11 21:08:37 +03:00
|
|
|
|
2018-05-02 12:58:43 +03:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
2019-03-11 21:08:37 +03:00
|
|
|
pushd matrix-js-sdk
|
2023-02-20 14:41:36 +03:00
|
|
|
[ -n "$JS_SDK_GITHUB_BASE_REF" ] && git fetch --depth 1 origin $JS_SDK_GITHUB_BASE_REF && git checkout $JS_SDK_GITHUB_BASE_REF
|
2019-03-11 21:08:37 +03:00
|
|
|
yarn link
|
2023-03-31 18:06:08 +03:00
|
|
|
yarn install --frozen-lockfile $@
|
2019-03-11 21:08:37 +03:00
|
|
|
popd
|
|
|
|
|
2022-02-01 18:49:49 +03:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-analytics-events main
|
|
|
|
pushd matrix-analytics-events
|
|
|
|
yarn link
|
2023-03-31 18:06:08 +03:00
|
|
|
yarn install --frozen-lockfile $@
|
2022-06-07 22:08:36 +03:00
|
|
|
yarn build:ts
|
2022-02-01 18:49:49 +03:00
|
|
|
popd
|
|
|
|
|
2019-03-11 21:08:37 +03:00
|
|
|
yarn link matrix-js-sdk
|
2022-06-07 22:08:36 +03:00
|
|
|
yarn link @matrix-org/analytics-events
|
2023-03-31 18:06:08 +03:00
|
|
|
yarn install --frozen-lockfile $@
|