We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c26c1 commit 5e62614Copy full SHA for 5e62614
.github/bin/format-package-json.mjs
@@ -209,7 +209,7 @@ const formatted = {};
209
const keywords = new Set(formatted.keywords);
210
keywords.forEach((keyword) => keywords.delete(keyword + 's')); // poor mans pluralize, we only want singular words as keywords
211
formatted.keywords = Array.from(keywords);
212
- formatted.keywords.sort();
+ formatted.keywords.sort((a, b) => a.localeCompare(b));
213
}
214
215
if (Object.keys(packageJSONInfo.csstools ?? {}).length) {
plugins/postcss-attribute-case-insensitive/package.json
@@ -67,9 +67,9 @@
67
},
68
"bugs": "https://github.com/csstools/postcss-plugins/issues",
69
"keywords": [
70
- "CSS4",
71
"attribute",
72
"css",
+ "CSS4",
73
"insensitive",
74
"postcss",
75
"postcss-plugin",
0 commit comments