From 076051b58be7b198732d1ce2b9a415ccd0c63a97 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 2 Oct 2021 14:13:07 -0500 Subject: [PATCH] Put keywords in the end --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b332811d..d3313967 100755 --- a/index.js +++ b/index.js @@ -184,7 +184,6 @@ const fields = [ { key: 'private' }, { key: 'description' }, /* vscode */ { key: 'categories', over: uniq }, - { key: 'keywords', over: uniq }, { key: 'homepage' }, { key: 'bugs', over: sortObjectBy(['url', 'email']) }, { key: 'repository', over: sortURLObject }, @@ -291,6 +290,7 @@ const fields = [ /* vscode */ { key: 'galleryBanner', over: sortObject }, /* vscode */ { key: 'preview' }, /* vscode */ { key: 'markdown' }, + { key: 'keywords', over: uniq }, ] const defaultSortOrder = fields.map(({ key }) => key)