mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
7f7357573c
This installs and links the JS SDK to access ESLint rules and their deps. These scripts are copied from the React SDK. Part of https://github.com/vector-im/riot-web/issues/13584
14 lines
160 B
Bash
Executable File
14 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
|
|
|
pushd matrix-js-sdk
|
|
yarn link
|
|
yarn install $@
|
|
popd
|
|
|
|
yarn link matrix-js-sdk
|
|
yarn install $@
|