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

8 lines (7 loc) 312 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.selectorExistsInAST = selectorExistsInAST; function selectorExistsInAST(selector, ast) { const { tsquery } = require('@phenomnomnominal/tsquery'); return tsquery(ast, selector, { visitAllChildren: true }).length > 0; }