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

28 lines 919 B
/** * Adapted from the original ng-packagr source. * * Changes made: * - Resolve `piscina` from the installed `ng-packagr` package. * - Additionally search for the TailwindCSS config in the workspace root. */ export declare enum CssUrl { inline = "inline", none = "none" } export declare class StylesheetProcessor { private readonly projectBasePath; private readonly basePath; private readonly cssUrl?; private readonly includePaths?; private readonly cacheDirectory?; private renderWorker; constructor(projectBasePath: string, basePath: string, cssUrl?: CssUrl, includePaths?: string[], cacheDirectory?: string | false); process({ filePath, content, }: { filePath: string; content: string; }): Promise<string>; /** Destory workers in pool. */ destroy(): void; private createRenderWorker; } //# sourceMappingURL=stylesheet-processor.d.ts.map