(context: Context, *commands: str, **kwargs: Any)
| 242 | |
| 243 | |
| 244 | def in_py(context: Context, *commands: str, **kwargs: Any) -> None: |
| 245 | for p in PY_PROJECTS: |
| 246 | with context.cd(p): |
| 247 | log.info(f"Running commands in {p}...") |
| 248 | for c in commands: |
| 249 | context.run(c, **kwargs) |
| 250 | |
| 251 | |
| 252 | def in_js(context: Context, *commands: str, **kwargs: Any) -> None: |