2019-03-11 21:23:07 +03:00
|
|
|
#!/bin/bash
|
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
|
|
|
|
yarn link
|
2021-07-07 17:11:47 +03:00
|
|
|
yarn install --pure-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
|
|
|
|
yarn install --pure-lockfile $@
|
|
|
|
popd
|
|
|
|
|
2019-03-11 21:08:37 +03:00
|
|
|
yarn link matrix-js-sdk
|
2022-02-01 18:49:49 +03:00
|
|
|
yarn link matrix-analytics-events
|
2021-07-07 17:11:47 +03:00
|
|
|
yarn install --pure-lockfile $@
|