fix(docker): keep bundled Ink source for TUI runtime builds

This commit is contained in:
Brooklyn Nicholson
2026-04-27 19:07:43 -05:00
parent 0f510951c4
commit b57e55f9fd
2 changed files with 0 additions and 2 deletions

View File

@@ -133,7 +133,6 @@ def test_dockerfile_materializes_local_tui_ink_package(dockerfile_text):
and "rm -rf packages/hermes-ink/node_modules" in step
and "npm install --omit=dev" in step
and "--prefix node_modules/@hermes/ink" in step
and "rm -rf packages/hermes-ink" in step
and "await import('@hermes/ink')" in step
for step in _run_steps(dockerfile_text)
)