UNPKG

@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) 318 B
/** * Update package.json dependencies to use pnpm catalog versions and local workspace versions * * @param packageRoot - The root of the package * @param workspaceRoot - The root of the workspace */ declare function pnpmUpdate(packageRoot: string, workspaceRoot?: string): Promise<void>; export { pnpmUpdate };