(platform: str, arch: str)
| 41 | |
| 42 | |
| 43 | def _tarball_url(platform: str, arch: str) -> str: |
| 44 | package_tail = f"{platform}-{arch}" |
| 45 | return f"https://registry.npmjs.org/@esbuild/{package_tail}/-/{package_tail}-{ESBUILD_VERSION}.tgz" |
| 46 | |
| 47 | |
| 48 | def install_esbuild(force: bool = False) -> Path: |