postcss-reduce-initial
Advanced tools
Comparing version 7.0.1 to 7.0.2
{ | ||
"name": "postcss-reduce-initial", | ||
"version": "7.0.1", | ||
"version": "7.0.2", | ||
"description": "Reduce initial definitions to the actual initial value, where possible.", | ||
@@ -26,3 +26,3 @@ "main": "src/index.js", | ||
"dependencies": { | ||
"browserslist": "^4.23.1", | ||
"browserslist": "^4.23.3", | ||
"caniuse-api": "^3.0.0" | ||
@@ -39,3 +39,3 @@ }, | ||
"html-to-text": "^9.0.5", | ||
"postcss": "^8.4.38" | ||
"postcss": "^8.4.40" | ||
}, | ||
@@ -42,0 +42,0 @@ "peerDependencies": { |
@@ -12,9 +12,6 @@ export = pluginCreator; | ||
*/ | ||
declare function pluginCreator(options?: Options): import('postcss').Plugin; | ||
declare function pluginCreator(options?: Options): import("postcss").Plugin; | ||
declare namespace pluginCreator { | ||
export { postcss, AutoprefixerOptions, BrowserslistOptions, Options }; | ||
} | ||
type Options = { | ||
ignore?: string[]; | ||
} & AutoprefixerOptions & BrowserslistOptions; | ||
declare var postcss: true; | ||
@@ -24,4 +21,7 @@ type AutoprefixerOptions = { | ||
}; | ||
type BrowserslistOptions = Pick<browserslist.Options, 'stats' | 'path' | 'env'>; | ||
type BrowserslistOptions = Pick<browserslist.Options, "stats" | "path" | "env">; | ||
type Options = { | ||
ignore?: string[]; | ||
} & AutoprefixerOptions & BrowserslistOptions; | ||
import browserslist = require("browserslist"); | ||
//# sourceMappingURL=index.d.ts.map |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18701
Updatedbrowserslist@^4.23.3