Comparing version 7.0.3 to 7.0.4
{ | ||
"name": "cssnano", | ||
"version": "7.0.3", | ||
"version": "7.0.4", | ||
"description": "A modular minifier, built on top of the PostCSS ecosystem.", | ||
@@ -23,3 +23,3 @@ "main": "src/index.js", | ||
"lilconfig": "^3.1.2", | ||
"cssnano-preset-default": "^7.0.3" | ||
"cssnano-preset-default": "^7.0.4" | ||
}, | ||
@@ -46,4 +46,4 @@ "homepage": "https://github.com/cssnano/cssnano", | ||
"autoprefixer": "^10.4.19", | ||
"postcss": "^8.4.38", | ||
"cssnano-preset-advanced": "^7.0.3", | ||
"postcss": "^8.4.39", | ||
"cssnano-preset-advanced": "^7.0.4", | ||
"cssnano-preset-lite": "^4.0.1" | ||
@@ -50,0 +50,0 @@ }, |
@@ -7,6 +7,7 @@ export = cssnanoPlugin; | ||
*/ | ||
declare function cssnanoPlugin(options?: Options | undefined): import('postcss').Processor; | ||
declare function cssnanoPlugin(options?: Options | undefined): import("postcss").Processor; | ||
declare namespace cssnanoPlugin { | ||
export { postcss, Options }; | ||
} | ||
declare var postcss: true; | ||
type Options = { | ||
@@ -17,3 +18,2 @@ preset?: any; | ||
}; | ||
declare var postcss: true; | ||
//# 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
7334