@storm-software/workspace-tools
Version:
Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.
10 lines (8 loc) • 303 B
text/typescript
/**
* Update package.json dependencies to use pnpm catalog versions
*
* @param packageRoot - The root of the package
* @param workspaceRoot - The root of the workspace
*/
declare function pnpmCatalogUpdate(packageRoot: string, workspaceRoot?: string): Promise<void>;
export { pnpmCatalogUpdate };