licss
Version:
gulp plugin. bundles, compiles, minimizes, rename and cleans up sass, scss, css, and postcss style sheets. use it for bootsrtap 5.3.6 (for the stop warning, sass v.1.78.0 was used here). made by pasmurno from llcawc
13 lines (12 loc) • 452 B
TypeScript
import { UserDefinedOptions } from 'purgecss';
import rename from './rename.js';
export { rename };
/**
* Gulp plugin for style transformation - bundles, compiles, minimizes, and cleans up sass, scss, css, and postcss style sheets.
* @param options
*/
export default function licss(options?: {
minify?: boolean | undefined;
loadPaths?: string[] | undefined;
purgeOptions?: UserDefinedOptions | undefined;
}): import("stream").Transform;