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) 425 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.assertBuilderPackageIsInstalled = assertBuilderPackageIsInstalled; function assertBuilderPackageIsInstalled(packageName) { try { require.resolve(packageName); } catch { throw new Error(`This executor requires the package ${packageName} to be installed. Please make sure it is installed and try again.`); } }