UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

11 lines (10 loc) 509 B
import { Rule, Tree, SchematicContext } from '@angular-devkit/schematics'; export interface PackageRenameMapping { [packageName: string]: string | [newPackageName: string, version: string]; } /** * Updates all the imports in the workspace, and adjust the package.json appropriately. * * @param packageNameMapping The packageNameMapping provided to the schematic */ export declare function renameNpmPackages(packageRenameMapping: PackageRenameMapping): (tree: Tree, context: SchematicContext) => Rule;