UNPKG

yalc

Version:

Work with npm/yarn packages locally like a boss.

10 lines (9 loc) 352 B
import { PackageInstallation } from './installations'; export interface UpdatePackagesOptions { workingDir: string; noInstallationsRemove?: boolean; replace?: boolean; update?: boolean; restore?: boolean; } export declare const updatePackages: (packages: string[], options: UpdatePackagesOptions) => Promise<PackageInstallation[]>;