From 124068294e2fb9010a9651e2039bc09b8ad16f9f Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Wed, 5 Feb 2025 10:48:53 -0500 Subject: [PATCH] synapse guest module: add to yarn workspaces This fixes a false-positive "missing file" check in knip --- modules/restricted-guests/synapse/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/restricted-guests/synapse/package.json b/modules/restricted-guests/synapse/package.json index 7f1ef45b65..05cfd61802 100644 --- a/modules/restricted-guests/synapse/package.json +++ b/modules/restricted-guests/synapse/package.json @@ -6,11 +6,13 @@ "author": "New Vector Ltd.", "license": "Apache-2.0", "scripts": { + "prepare": "echo \"Nothing to prepare\"", "clean": "echo \"Nothing to clean\"", "build": "echo \"Nothing to build\"", "docker:build": "docker build -t element-hq/synapse-guest-module -f Dockerfile .", "tsc": "echo \"Nothing to tsc\"", "lint": "echo \"Nothing to lint\"", + "lint:ts": "echo \"Nothing to lint:ts\"", "types:py": "node ./scripts/run_in_venv.js tox -e check_types", "lint:py": "node ./scripts/run_in_venv.js tox -e check_codestyle", "lint:fix": "node ./scripts/run_in_venv.js tox -e fix_codestyle",