mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-25 00:11:43 +02:00
Most `npm` operations are replaced with `yarn`, which generally has better behavior. However, steps like publish that write to the NPM registry are left to `npm`, which currently handles these tasks best.
12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
yarn install
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
|
rm -r node_modules/matrix-js-sdk || true
|
|
ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
|
|
|
|
cd matrix-js-sdk
|
|
yarn install
|
|
cd ..
|