File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
plugins/postcss-attribute-case-insensitive Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ const formatted = {};
209
209
const keywords = new Set ( formatted . keywords ) ;
210
210
keywords . forEach ( ( keyword ) => keywords . delete ( keyword + 's' ) ) ; // poor mans pluralize, we only want singular words as keywords
211
211
formatted . keywords = Array . from ( keywords ) ;
212
- formatted . keywords . sort ( ) ;
212
+ formatted . keywords . sort ( ( a , b ) => a . localeCompare ( b ) ) ;
213
213
}
214
214
215
215
if ( Object . keys ( packageJSONInfo . csstools ?? { } ) . length ) {
Original file line number Diff line number Diff line change 67
67
},
68
68
"bugs" : " https://github.com/csstools/postcss-plugins/issues" ,
69
69
"keywords" : [
70
- " CSS4" ,
71
70
" attribute" ,
72
71
" css" ,
72
+ " CSS4" ,
73
73
" insensitive" ,
74
74
" postcss" ,
75
75
" postcss-plugin" ,
You can’t perform that action at this time.
0 commit comments