postcss-minify-font-values
Advanced tools
Comparing version
{ | ||
"name": "postcss-minify-font-values", | ||
"version": "7.0.0", | ||
"version": "7.0.1", | ||
"description": "Minify font declarations with PostCSS", | ||
@@ -34,7 +34,7 @@ "main": "src/index.js", | ||
"devDependencies": { | ||
"postcss": "^8.4.38" | ||
"postcss": "^8.5.3" | ||
}, | ||
"peerDependencies": { | ||
"postcss": "^8.4.31" | ||
"postcss": "^8.4.32" | ||
} | ||
} |
@@ -8,12 +8,12 @@ export = pluginCreator; | ||
*/ | ||
declare function pluginCreator(opts: Options): import('postcss').Plugin; | ||
declare function pluginCreator(opts: Options): import("postcss").Plugin; | ||
declare namespace pluginCreator { | ||
export { postcss, Options }; | ||
} | ||
declare var postcss: true; | ||
type Options = { | ||
removeAfterKeyword?: boolean; | ||
removeDuplicates?: boolean; | ||
removeQuotes?: boolean | ((prop: string) => '' | 'font' | 'font-family' | 'font-weight'); | ||
removeQuotes?: boolean | ((prop: string) => "" | "font" | "font-family" | "font-weight"); | ||
}; | ||
declare var postcss: true; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,3 +0,3 @@ | ||
declare function _exports(nodes: import('postcss-value-parser').Node[], opts: import('../index').Options): import('postcss-value-parser').WordNode[]; | ||
declare function _exports(nodes: import("postcss-value-parser").Node[], opts: import("../index").Options): import("postcss-value-parser").WordNode[]; | ||
export = _exports; | ||
//# sourceMappingURL=minify-family.d.ts.map |
@@ -1,3 +0,3 @@ | ||
declare function _exports(unminified: string, opts: import('../index').Options): string; | ||
declare function _exports(unminified: string, opts: import("../index").Options): string; | ||
export = _exports; | ||
//# sourceMappingURL=minify-font.d.ts.map |
Sorry, the diff of this file is not supported yet