Skip to content

Commit dd5508f

Browse files
⬆️ deps: Upgrade.
1 parent 7fee8aa commit dd5508f

File tree

3 files changed

+1203
-2940
lines changed

3 files changed

+1203
-2940
lines changed

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,16 @@
6666
},
6767
"dependencies": {},
6868
"devDependencies": {
69-
"@aureooms/js-array": "4.0.0",
70-
"@aureooms/js-in-situ-sort-spec": "8.0.0",
69+
"@array-like/copy": "^0.0.1",
70+
"@array-like/reduce": "^0.0.1",
7171
"@babel/core": "7.16.5",
7272
"@babel/preset-env": "7.16.5",
7373
"@babel/register": "7.16.5",
7474
"@commitlint/cli": "15.0.0",
75+
"@comparison-sorting/specification": "^9.0.0",
7576
"@js-library/commitlint-config": "0.0.4",
76-
"ava": "3.15.0",
77+
"@total-order/primitive": "^1.0.1",
78+
"ava": "^3.15.0",
7779
"babel-plugin-transform-remove-console": "6.9.4",
7880
"babel-plugin-unassert": "3.2.0",
7981
"babel-preset-power-assert": "3.0.0",

test/src/all.js

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// eslint-disable-next-line ava/use-test
22
import ava from 'ava';
33

4-
import * as spec from '@aureooms/js-in-situ-sort-spec';
5-
import {min, copy} from '@aureooms/js-array';
6-
import {increasing, decreasing} from '@aureooms/js-compare';
4+
import * as spec from '@comparison-sorting/specification';
5+
import {copy} from '@array-like/copy';
6+
import {min} from '@array-like/reduce';
7+
import {increasing, decreasing} from '@total-order/primitive';
78
import {
89
sort,
910
sortTypedIncreasing,
@@ -45,8 +46,14 @@ const sortTypedOptimized = (compare, a, i, j) => {
4546
}
4647
};
4748

48-
spec.test(ava, [
49-
['sort', sort],
50-
['sortTyped', sortTyped],
51-
['sortTypedOptimized', sortTypedOptimized],
52-
]);
49+
spec.test(
50+
ava,
51+
[
52+
['sort', sort],
53+
['sortTyped', sortTyped],
54+
['sortTypedOptimized', sortTypedOptimized],
55+
],
56+
{
57+
compare: [increasing, decreasing],
58+
},
59+
);

0 commit comments

Comments
 (0)