pastoralist
Version:
A tool to watch over node module resolutions and overrides
11 lines (10 loc) • 747 B
TypeScript
import type { RunDeps } from "./types";
export { action, handleInitMode, handleTestMode } from "./action";
export { buildSecurityOverrideDetail, determineSecurityScanPaths, formatUpdateReport, handleSecurityResults, normalizeCacheTtl, runSecurityCheck, runSecurityPhase, buildMergedOptions, } from "./security";
export { buildSecurityResult, buildUpdateResult, createEmptyResult, createErrorResult, outputResult, } from "./results";
export { displayOverrides, displaySummaryTable } from "./display";
export { checkRemovalSafety } from "./removal-safety";
export { resolvePathFromRoot } from "./path";
export { handleSetupHook } from "./setup-hook";
export declare const run: (argv?: string[], deps?: RunDeps) => Promise<void>;