fix(extensions-cli): fix dev mode error (#37024)

This commit is contained in:
Ville Brofeldt
2026-01-12 06:52:09 -08:00
committed by GitHub
parent 4f444ae1d2
commit 62c7b48b5c
2 changed files with 8 additions and 21 deletions

View File

@@ -363,11 +363,6 @@ def dev(ctx: click.Context) -> None:
def backend_watcher() -> None:
if backend_dir.exists():
rebuild_backend(cwd)
dist_dir = cwd / "dist"
manifest_path = dist_dir / "manifest.json"
if manifest_path.exists():
manifest = json.loads(manifest_path.read_text())
write_manifest(cwd, manifest)
# Build watch message based on existing directories
watch_dirs = []