postcss-discard-comments
Advanced tools
Comparing version 7.0.1 to 7.0.2
{ | ||
"name": "postcss-discard-comments", | ||
"version": "7.0.1", | ||
"version": "7.0.2", | ||
"description": "Discard comments in your CSS files with PostCSS.", | ||
@@ -27,3 +27,3 @@ "main": "src/index.js", | ||
"dependencies": { | ||
"postcss-selector-parser": "^6.1.0" | ||
"postcss-selector-parser": "^6.1.1" | ||
}, | ||
@@ -37,3 +37,3 @@ "bugs": { | ||
"devDependencies": { | ||
"postcss": "^8.4.38", | ||
"postcss": "^8.4.40", | ||
"postcss-scss": "^4.0.9", | ||
@@ -40,0 +40,0 @@ "postcss-simple-vars": "^7.0.1" |
@@ -12,6 +12,7 @@ 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 = { | ||
@@ -22,3 +23,2 @@ removeAll?: boolean | undefined; | ||
}; | ||
declare var postcss: true; | ||
//# sourceMappingURL=index.d.ts.map |
export = CommentRemover; | ||
/** @param {import('../index.js').Options} options */ | ||
declare function CommentRemover(options: import('../index.js').Options): void; | ||
declare function CommentRemover(options: import("../index.js").Options): void; | ||
declare class CommentRemover { | ||
/** @param {import('../index.js').Options} options */ | ||
constructor(options: import('../index.js').Options); | ||
constructor(options: import("../index.js").Options); | ||
options: import("../index.js").Options; | ||
@@ -8,0 +8,0 @@ /** |
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
13283