Render and write in .web the package.json file.
()
| 523 | |
| 524 | |
| 525 | def initialize_package_json(): |
| 526 | """Render and write in .web the package.json file.""" |
| 527 | output_path = get_web_dir() / constants.PackageJson.PATH |
| 528 | output_path.write_text(_compile_package_json()) |
| 529 | |
| 530 | |
| 531 | def _compile_vite_config(config: Config): |
no test coverage detected