fix(coding-agent): add missing strip-ansi dependency (#1738)

strip-ansi is imported in bash-executor.ts and two interactive mode
components but is not declared in package.json dependencies. This
causes ERR_MODULE_NOT_FOUND at runtime in strict package managers
like pnpm that do not hoist undeclared dependencies.

Co-authored-by: Graadient <graadient@users.noreply.github.com>
This commit is contained in:
Graadient 2026-03-03 17:16:20 +09:00 committed by GitHub
parent c65de34e11
commit c04708a71e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,6 +55,7 @@
"marked": "^15.0.12", "marked": "^15.0.12",
"minimatch": "^10.2.3", "minimatch": "^10.2.3",
"proper-lockfile": "^4.1.2", "proper-lockfile": "^4.1.2",
"strip-ansi": "^7.1.0",
"yaml": "^2.8.2" "yaml": "^2.8.2"
}, },
"overrides": { "overrides": {