UNPKG

css-mangle-webpack-plugin

Version:

This webpack plugin package is a CSS mangler that globally optimizes and shortens identifier names.

14 lines (12 loc) 267 B
export enum ManglerAssetType { SCRIPT = "script", HTML4 = "html", STYLE = "style", OTHER = "other", } export class ManglerAsset { constructor( public syntaxText: string, public syntaxType: ManglerAssetType ) {} }