Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2021-09-28 21:18:01 +0300
committerisaacs <i@izs.me>2021-09-28 21:52:07 +0300
commitdbb90f7997900b8ae6026dddaa718efe9a1db2f4 (patch)
tree2241c89f49fa3d8291d0123ce52026e6cbe088d4 /lib/utils/config/describe-all.js
parente94ddeaca1e75ecc8f54ebcb3df222965e3635d1 (diff)
fix: use Intl.Collator for string sorting when availableisaacs/string-locale-compare
The npm/cli form of https://github.com/npm/arborist/pull/324 Required adding options support to package used for this. PR-URL: https://github.com/npm/cli/pull/3809 Credit: @isaacs Close: #3809 Reviewed-by: @wraithgar
Diffstat (limited to 'lib/utils/config/describe-all.js')
-rw-r--r--lib/utils/config/describe-all.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/utils/config/describe-all.js b/lib/utils/config/describe-all.js
index c8a973cc0..23a10ae97 100644
--- a/lib/utils/config/describe-all.js
+++ b/lib/utils/config/describe-all.js
@@ -1,4 +1,5 @@
const definitions = require('./definitions.js')
+const localeCompare = require('@isaacs/string-locale-compare')('en')
const describeAll = () => {
// sort not-deprecated ones to the top
/* istanbul ignore next - typically already sorted in the definitions file,
@@ -7,7 +8,7 @@ const describeAll = () => {
const sort = ([keya, {deprecated: depa}], [keyb, {deprecated: depb}]) => {
return depa && !depb ? 1
: !depa && depb ? -1
- : keya.localeCompare(keyb, 'en')
+ : localeCompare(keya, keyb)
}
return Object.entries(definitions).sort(sort)
.map(([key, def]) => def.describe())