@nxext/stencil
Version:
Nx plugin for stenciljs
13 lines (12 loc) • 544 B
TypeScript
import { Tree } from '@nx/devkit';
import type { Diagnostic } from '@stencil/core/compiler';
import { SupportedStyles } from '../stencil-core-utils';
export declare function calculateStyle(style: SupportedStyles | undefined): SupportedStyles;
export declare function isBuildableStencilProject(project: {
root: string;
targets?: Record<string, {
executor?: string;
}>;
}, tree?: Tree): boolean;
export declare const hasError: (diagnostics: Diagnostic[]) => boolean;
export declare function readNxVersion(host: Tree): string;