(context: Context, *commands: str, **kwargs: Any)
| 250 | |
| 251 | |
| 252 | def in_js(context: Context, *commands: str, **kwargs: Any) -> None: |
| 253 | with context.cd(JS_DIR): |
| 254 | for c in commands: |
| 255 | context.run(c, **kwargs) |
| 256 | |
| 257 | |
| 258 | def get_packages(context: Context) -> dict[str, PackageInfo]: |