🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

postcss-normalize-string

Package Overview
Dependencies
Maintainers
7
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-normalize-string - npm Package Compare versions

Comparing version

to
7.0.1

6

package.json
{
"name": "postcss-normalize-string",
"version": "7.0.0",
"version": "7.0.1",
"description": "Normalize wrapping quotes for CSS string literals.",

@@ -35,7 +35,7 @@ "main": "src/index.js",

"devDependencies": {
"postcss": "^8.4.38"
"postcss": "^8.5.3"
},
"peerDependencies": {
"postcss": "^8.4.31"
"postcss": "^8.4.32"
}
}

@@ -8,9 +8,6 @@ export = pluginCreator;

*/
declare function pluginCreator(opts: Options): import('postcss').Plugin;
declare function pluginCreator(opts: Options): import("postcss").Plugin;
declare namespace pluginCreator {
export { postcss, StringAstNode, StringAst, Options };
}
type Options = {
preferredQuote?: 'double' | 'single';
};
declare var postcss: true;

@@ -40,2 +37,5 @@ type StringAstNode = {

};
type Options = {
preferredQuote?: "double" | "single";
};
//# sourceMappingURL=index.d.ts.map

Sorry, the diff of this file is not supported yet