@pakk/core
Version:
The core library of pakk, that can manage your package.json for library development.
9 lines • 552 B
TypeScript
import { CwdOption } from '@alexaegis/fs';
import { RegularWorkspacePackage, RootWorkspacePackage, WorkspacePackage } from '@alexaegis/workspace-tools';
export interface CurrentWorkspacePackageWithRoot {
workspacePackage: RegularWorkspacePackage;
rootWorkspacePackage: RootWorkspacePackage;
allWorkspacePackages: WorkspacePackage[];
}
export declare const findCurrentAndRootWorkspacePackage: (rawOptions?: CwdOption) => Promise<CurrentWorkspacePackageWithRoot>;
//# sourceMappingURL=find-current-and-root-workspace-package.function.d.ts.map