Files
openclaw/scripts/check-dependency-pins.d.mts
RileyJJY 34b72d1fce fix(scripts): bound dependency pin git lookups (#110570)
* fix(scripts): bound dependency pin git lookups

* fix(scripts): address dependency pin review

* Update dependency pin helper types

* fix(scripts): terminate stalled dependency pin Git commands

Bound both dependency-pin Git subprocesses and terminate SIGTERM-resistant children. Preserve sparse-index reads, Windows-native Git, exact timeout errors, and script declaration contracts.

Co-authored-by: RileyJJY <0668000974@xydigit.com>

---------

Co-authored-by: Peter Steinberger <steipete@gmail.com>
2026-07-29 13:11:23 -04:00

13 lines
291 B
TypeScript

#!/usr/bin/env node
/**
* Collects dependency pin violations for the current workspace.
*/
export function collectDependencyPinViolations(
cwd?: string,
options?: { gitTimeoutMs?: number },
): unknown[];
/**
* Runs the dependency pin check.
*/
export function main(): Promise<void>;