UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

12 lines (11 loc) 452 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.angularMoveGenerator = angularMoveGenerator; const move_1 = require("@nx/workspace/src/generators/move/move"); /** * @deprecated Use the `@nx/workspace:move` generator instead. It will be removed in Nx v22. */ async function angularMoveGenerator(tree, schema) { process.env.NX_ANGULAR_MOVE_INVOKED = 'true'; await (0, move_1.moveGenerator)(tree, schema); }