Copy template files using the bundled esbuild frontend pipeline.
(output_dir: Path)
| 1649 | |
| 1650 | |
| 1651 | def copy_templates(output_dir: Path) -> None: |
| 1652 | """Copy template files using the bundled esbuild frontend pipeline.""" |
| 1653 | from ci.esbuild_frontend import copy_dist_to_output |
| 1654 | |
| 1655 | copy_dist_to_output(output_dir) |
| 1656 | |
| 1657 | |
| 1658 | def generate_manifest(example_name: str, output_dir: Path) -> None: |
no test coverage detected