@speedy-js/mono
Version:
Monorepo development & continuous integration tooling.
20 lines • 547 B
TypeScript
import { NpmNS } from '../types';
/**
* Fetch package version
*/
export declare function fetchPackageVersion(name: string, tag: string): Promise<string>;
/**
* Resolve local packages.
*/
export declare function resolveLocalPackages({ cwd, packagesDir, }: {
cwd: string;
packagesDir?: string;
}): NpmNS.IPackage[];
/**
* Retrieve packages informations
*/
export declare function resolvePackages({ cwd, tag, }: {
cwd?: string;
tag?: string;
}): Promise<NpmNS.IRemotePackageInfo[]>;
//# sourceMappingURL=resolvePackages.d.ts.map