UNPKG

@nx/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.

19 lines (18 loc) 482 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.runAngularPlugin = runAngularPlugin; async function runAngularPlugin(tree, schema) { let move; try { // nx-ignore-next-line move = require('@nx/angular/src/generators/move/move-impl').move; } catch { } if (!move) { return; } await move(tree, { oldProjectName: schema.projectName, newProjectName: schema.newProjectName, }); }