(dist_dir: Path)
| 117 | |
| 118 | |
| 119 | def _has_required_static_dist_assets(dist_dir: Path) -> bool: |
| 120 | return all( |
| 121 | path.is_file() |
| 122 | for path in ( |
| 123 | dist_dir / "index.css", |
| 124 | dist_dir / "modules" / "utils" / "json_inspector.css", |
| 125 | ) |
| 126 | ) |
| 127 | |
| 128 | |
| 129 | def _run_esbuild(args: list[str]) -> None: |