css-mqpacker-webpack-plugin
Advanced tools
Comparing version 0.12.7 to 0.12.8
{ | ||
"name": "css-mqpacker-webpack-plugin", | ||
"version": "0.12.7", | ||
"version": "0.12.8", | ||
"description": "The Webpack plugin for pack same CSS media query rules into one using PostCSS", | ||
@@ -13,3 +13,3 @@ "main": "src/index.js", | ||
"@hail2u/css-mqpacker": "github:hail2u/node-css-mqpacker#2349fdd", | ||
"fs-extra": "^11.1.0", | ||
"fs-extra": "^11.1.1", | ||
"schema-utils": "^4.0.0", | ||
@@ -16,0 +16,0 @@ "uvu": "^0.5.6" |
@@ -5,3 +5,3 @@ interface Options { | ||
exclude?: string | RegExp | (string | RegExp)[] | ||
sort?: boolean | ||
sort?: boolean | ((a: string, b: string) => number) | ||
} | ||
@@ -11,5 +11,5 @@ | ||
constructor(options?: Options) | ||
apply(compiler: import("webpack").Compiler): void; | ||
apply(compiler: import("webpack").Compiler): void | ||
} | ||
export = CssMqpackerPlugin |
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
12476