Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
fpbrault committed Nov 15, 2024
1 parent 5c667d3 commit eb6e7cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/atomic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
"i18next": "23.12.2",
"i18next-http-backend": "2.5.2",
"marked": "12.0.2",
"natural-orderby": "4.0.0",
"stencil-inline-svg": "1.1.0",
"ts-debounce": "^4.0.0"
},
Expand Down Expand Up @@ -139,6 +138,7 @@
"lit-html": "3.1.4",
"local-web-server": "5.4.0",
"lodash": "4.17.21",
"natural-orderby": "4.0.0",
"ncp": "2.0.0",
"postcss-focus-visible": "9.0.1",
"postcss-import": "16.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,12 @@ const sortCriteriaTests: {
{
criteria: 'alphanumericNatural',
sortFunction: (values: string[]) =>
orderBy(values, [(value) => value], 'asc'),
orderBy([...values], [(value) => value], 'asc'),
},
{
criteria: 'alphanumericNaturalDescending',
sortFunction: (values: string[]) =>
orderBy(values, [(value) => value], ['desc']),
orderBy([...values], [(value) => value], ['desc']),
},
];

Expand Down

0 comments on commit eb6e7cb

Please sign in to comment.