UNPKG

@nxext/stencil

Version:

Nx plugin for stenciljs

12 lines (11 loc) 450 B
import * as ts from 'typescript'; import { StringChange, Tree } from '@nrwl/devkit'; export declare enum SupportedStyles { css = "css", scss = "scss", styl = "styl", less = "less", pcss = "pcss" } export declare function addStylePlugin(stencilConfigSource: ts.SourceFile, style: SupportedStyles): StringChange[]; export declare function addStylePluginToConfig(host: Tree, stencilConfigPath: string, style: SupportedStyles): void;