Move element-web into apps/element-web

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2026-02-11 10:14:28 +00:00
parent 5979fc198a
commit 0141643be0
No known key found for this signature in database
GPG Key ID: A2B008A5F49F5D0D
2 changed files with 1 additions and 11 deletions

View File

@ -19,7 +19,7 @@ import { isDendrite } from "../../plugins/homeserver/dendrite";
// The fake call app does *just* enough to convince Element Web that a call is ongoing
// and functions like PiP work. It does not actually do anything though, to limit the
// surface we test.
const widgetApi = readFile("node_modules/matrix-widget-api/dist/api.min.js", "utf-8");
const widgetApi = readFile(require.resolve("matrix-widget-api/dist/api.min.js"), "utf-8");
const fakeCallClient = readFile("playwright/sample-files/fake-element-call.html", "utf-8");
function assertCommonCallParameters(

View File

@ -2,16 +2,6 @@
set -ex
# Automatically link to develop if we're building develop, but only if the caller
# hasn't asked us to build something else
BRANCH=$(git rev-parse --abbrev-ref HEAD)
if [[ $USE_CUSTOM_SDKS == false ]] && [[ $BRANCH == 'develop' ]]
then
echo "using develop dependencies for react-sdk and js-sdk"
USE_CUSTOM_SDKS=true
JS_SDK_BRANCH='develop'
fi
if [[ $USE_CUSTOM_SDKS == false ]]
then
echo "skipping js-sdk install: USE_CUSTOM_SDKS is false"