mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 02:51:39 +00:00
* 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>
13 lines
291 B
TypeScript
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>;
|