dbl-utils
Version:
Utilities for dbl, adba and others projects
11 lines (10 loc) • 403 B
TypeScript
#! bin/node
/**
* Purges unused CSS based on HTML content.
*
* @param cssFilePath - Path to the CSS file generated by the build.
* @param htmlDirPath - Directory containing the generated HTML files.
* @param outputCssFilePath - Path to save the purged CSS.
*/
declare const purgeCss: (cssFilePath: string, htmlDirPath: string, outputCssFilePath: string) => Promise<void>;
export default purgeCss;