Skip to content

Commit 5492f1a

Browse files
⬆️ deps: Upgrade.
1 parent 59f9dd6 commit 5492f1a

File tree

12 files changed

+1922
-2578
lines changed

12 files changed

+1922
-2578
lines changed

package.json

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,29 +76,36 @@
7676
"url": "https://github.com/make-github-pseudonymous-again/js-radix-sort/issues"
7777
},
7878
"dependencies": {
79-
"@aureooms/js-permutation": "^2.0.0"
79+
"@combinatorics/permutation": "^4.0.0"
8080
},
8181
"devDependencies": {
82-
"@aureooms/js-compare": "1.4.8",
83-
"@aureooms/js-itertools": "5.0.1",
84-
"@aureooms/js-random": "2.0.0",
85-
"@babel/cli": "7.13.10",
86-
"@babel/core": "7.13.10",
87-
"@babel/preset-env": "7.13.10",
88-
"@babel/register": "7.13.8",
89-
"ava": "3.15.0",
82+
"@babel/cli": "7.16.0",
83+
"@babel/core": "7.16.5",
84+
"@babel/preset-env": "7.16.5",
85+
"@babel/register": "7.16.5",
86+
"@iterable-iterator/list": "^1.0.1",
87+
"@iterable-iterator/map": "^1.0.1",
88+
"@iterable-iterator/range": "^2.1.0",
89+
"@iterable-iterator/reduce": "^1.0.1",
90+
"@iterable-iterator/repeat": "^1.0.1",
91+
"@iterable-iterator/sorted": "^1.0.0",
92+
"@iterable-iterator/zip": "^1.0.1",
93+
"@randomized/random": "^4.0.0",
94+
"@total-order/lex": "^1.0.0",
95+
"@total-order/primitive": "^1.0.1",
96+
"ava": "^3.15.0",
9097
"babel-plugin-transform-remove-console": "6.9.4",
91-
"babel-plugin-unassert": "3.0.1",
98+
"babel-plugin-unassert": "3.2.0",
9299
"babel-preset-power-assert": "3.0.0",
93-
"coveralls": "3.1.0",
100+
"coveralls": "3.1.1",
94101
"esdoc": "1.1.0",
95102
"esdoc-inject-script-plugin": "1.0.0",
96103
"esdoc-inject-style-plugin": "1.0.0",
97104
"esdoc-standard-plugin": "1.0.0",
98-
"np": "7.4.0",
105+
"np": "7.6.0",
99106
"nyc": "15.1.0",
100107
"power-assert": "1.6.1",
101-
"regenerator-runtime": "0.13.7",
108+
"regenerator-runtime": "0.13.9",
102109
"xo": "0.36.1"
103110
},
104111
"files": [

src/array/core/stable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import assert from 'assert';
2-
import {_identity} from '@aureooms/js-permutation';
2+
import {_identity} from '@combinatorics/permutation';
33
import alloc from './alloc';
44
import zeros from './zeros';
55
import reset from './reset';

test/src/api/sort.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import test from 'ava';
22
import {AssertionError} from 'assert';
3-
import {list, all, map, sorted} from '@aureooms/js-itertools';
4-
import {
5-
fixedlexicographical,
6-
quasilexicographical,
7-
increasing
8-
} from '@aureooms/js-compare';
3+
import {list} from '@iterable-iterator/list';
4+
import {all} from '@iterable-iterator/reduce';
5+
import {map} from '@iterable-iterator/map';
6+
import {sorted} from '@iterable-iterator/sorted';
7+
import {fixedlexicographical, quasilexicographical} from '@total-order/lex';
8+
import {increasing} from '@total-order/primitive';
99

1010
import sort from '../../../src/array/api/sort';
1111

test/src/api/sortFloat32.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import test from 'ava';
2-
import {sorted, range, list} from '@aureooms/js-itertools';
3-
import {shuffle} from '@aureooms/js-random';
4-
import {increasing} from '@aureooms/js-compare';
2+
import {sorted} from '@iterable-iterator/sorted';
3+
import {range} from '@iterable-iterator/range';
4+
import {list} from '@iterable-iterator/list';
5+
import {shuffle} from '@randomized/random';
6+
import {increasing} from '@total-order/primitive';
57

68
import sortFloat32 from '../../../src/array/api/sortFloat32';
79

test/src/api/sortInt16.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import test from 'ava';
2-
import {sorted, range, list, map} from '@aureooms/js-itertools';
3-
import {shuffle, randrange} from '@aureooms/js-random';
4-
import {increasing} from '@aureooms/js-compare';
2+
import {sorted} from '@iterable-iterator/sorted';
3+
import {range} from '@iterable-iterator/range';
4+
import {list} from '@iterable-iterator/list';
5+
import {map} from '@iterable-iterator/map';
6+
import {shuffle, randrange} from '@randomized/random';
7+
import {increasing} from '@total-order/primitive';
58

69
import sortInt16 from '../../../src/array/api/sortInt16';
710

test/src/api/sortInt32.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import test from 'ava';
2-
import {sorted, range, list, map} from '@aureooms/js-itertools';
3-
import {shuffle, randrange} from '@aureooms/js-random';
4-
import {increasing} from '@aureooms/js-compare';
2+
import {sorted} from '@iterable-iterator/sorted';
3+
import {range} from '@iterable-iterator/range';
4+
import {list} from '@iterable-iterator/list';
5+
import {map} from '@iterable-iterator/map';
6+
import {shuffle, randrange} from '@randomized/random';
7+
import {increasing} from '@total-order/primitive';
58

69
import sortInt32 from '../../../src/array/api/sortInt32';
710

test/src/api/sortInt8.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import test from 'ava';
2-
import {sorted, range, list, map} from '@aureooms/js-itertools';
3-
import {shuffle, randrange} from '@aureooms/js-random';
4-
import {increasing} from '@aureooms/js-compare';
2+
import {sorted} from '@iterable-iterator/sorted';
3+
import {range} from '@iterable-iterator/range';
4+
import {list} from '@iterable-iterator/list';
5+
import {map} from '@iterable-iterator/map';
6+
import {shuffle, randrange} from '@randomized/random';
7+
import {increasing} from '@total-order/primitive';
58

69
import sortInt8 from '../../../src/array/api/sortInt8';
710

test/src/api/sortUint16.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import test from 'ava';
2-
import {sorted, range, list, map} from '@aureooms/js-itertools';
3-
import {shuffle, randrange} from '@aureooms/js-random';
4-
import {increasing} from '@aureooms/js-compare';
2+
import {sorted} from '@iterable-iterator/sorted';
3+
import {range} from '@iterable-iterator/range';
4+
import {list} from '@iterable-iterator/list';
5+
import {map} from '@iterable-iterator/map';
6+
import {shuffle, randrange} from '@randomized/random';
7+
import {increasing} from '@total-order/primitive';
58

69
import sortUint16 from '../../../src/array/api/sortUint16';
710

test/src/api/sortUint32.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import test from 'ava';
2-
import {sorted, range, list, map} from '@aureooms/js-itertools';
3-
import {shuffle, randrange} from '@aureooms/js-random';
4-
import {increasing} from '@aureooms/js-compare';
2+
import {sorted} from '@iterable-iterator/sorted';
3+
import {range} from '@iterable-iterator/range';
4+
import {list} from '@iterable-iterator/list';
5+
import {map} from '@iterable-iterator/map';
6+
import {shuffle, randrange} from '@randomized/random';
7+
import {increasing} from '@total-order/primitive';
58

69
import sortUint32 from '../../../src/array/api/sortUint32';
710

test/src/api/sortUint8.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import test from 'ava';
2-
import {sorted, range, list, map} from '@aureooms/js-itertools';
3-
import {shuffle, randrange} from '@aureooms/js-random';
4-
import {increasing} from '@aureooms/js-compare';
2+
import {sorted} from '@iterable-iterator/sorted';
3+
import {range} from '@iterable-iterator/range';
4+
import {list} from '@iterable-iterator/list';
5+
import {map} from '@iterable-iterator/map';
6+
import {shuffle, randrange} from '@randomized/random';
7+
import {increasing} from '@total-order/primitive';
58

69
import sortUint8 from '../../../src/array/api/sortUint8';
710

test/src/api/stability.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import test from 'ava';
2-
import {
3-
list,
4-
all,
5-
map,
6-
sorted,
7-
range,
8-
enumerate,
9-
nrepeat
10-
} from '@aureooms/js-itertools';
11-
import {quasilexicographical, increasing} from '@aureooms/js-compare';
12-
import {randint} from '@aureooms/js-random';
2+
3+
import {list} from '@iterable-iterator/list';
4+
import {all} from '@iterable-iterator/reduce';
5+
import {map} from '@iterable-iterator/map';
6+
import {sorted} from '@iterable-iterator/sorted';
7+
import {range} from '@iterable-iterator/range';
8+
import {enumerate} from '@iterable-iterator/zip';
9+
import {nrepeat} from '@iterable-iterator/repeat';
10+
import {randint} from '@randomized/random';
11+
import {quasilexicographical} from '@total-order/lex';
12+
import {increasing} from '@total-order/primitive';
1313

1414
import sort from '../../../src/array/api/sort';
1515

0 commit comments

Comments
 (0)