postcss-merge-rules
Advanced tools
Comparing version
{ | ||
"name": "postcss-merge-rules", | ||
"version": "7.0.2", | ||
"version": "7.0.3", | ||
"description": "Merge CSS rules with PostCSS.", | ||
@@ -27,5 +27,5 @@ "types": "types/index.d.ts", | ||
"dependencies": { | ||
"browserslist": "^4.23.1", | ||
"browserslist": "^4.23.3", | ||
"caniuse-api": "^3.0.0", | ||
"postcss-selector-parser": "^6.1.0", | ||
"postcss-selector-parser": "^6.1.1", | ||
"cssnano-utils": "^5.0.0" | ||
@@ -41,5 +41,5 @@ }, | ||
"@types/caniuse-api": "^3.0.6", | ||
"postcss": "^8.4.38", | ||
"postcss": "^8.4.40", | ||
"postcss-simple-vars": "^7.0.1", | ||
"postcss-discard-comments": "^7.0.1" | ||
"postcss-discard-comments": "^7.0.2" | ||
}, | ||
@@ -46,0 +46,0 @@ "peerDependencies": { |
@@ -12,7 +12,6 @@ export = pluginCreator; | ||
*/ | ||
declare function pluginCreator(opts?: Options): import('postcss').Plugin; | ||
declare function pluginCreator(opts?: Options): import("postcss").Plugin; | ||
declare namespace pluginCreator { | ||
export { postcss, AutoprefixerOptions, BrowserslistOptions, Options }; | ||
} | ||
type Options = AutoprefixerOptions & BrowserslistOptions; | ||
declare var postcss: true; | ||
@@ -22,4 +21,5 @@ type AutoprefixerOptions = { | ||
}; | ||
type BrowserslistOptions = Pick<browserslist.Options, 'stats' | 'path' | 'env'>; | ||
type BrowserslistOptions = Pick<browserslist.Options, "stats" | "path" | "env">; | ||
type Options = AutoprefixerOptions & BrowserslistOptions; | ||
import browserslist = require("browserslist"); | ||
//# sourceMappingURL=index.d.ts.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
25575
0.11%Updated