Skip to content

Commit

Permalink
📦 deps: Replace deprecated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed May 27, 2021
1 parent e16477c commit 58a958a
Show file tree
Hide file tree
Showing 9 changed files with 556 additions and 1,603 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ let IntervalTree = persistent.intervaltree( fingertree.empty , INTERVAL ) ;

This package has one child:

- :cactus: [@aureooms/js-fingertree](https://github.com/make-github-pseudonymous-again/js-fingertree): Finger tree data structure for JavaScript
- :cactus: [@functional-data-structure/finger-tree](https://github.com/make-github-pseudonymous-again/js-fingertree): Finger tree data structure for JavaScript


## :scroll: References
Expand Down
4 changes: 2 additions & 2 deletions doc/manual/example.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Examples
```js
import { Measures } from '@aureooms/js-measure' ;
import { empty } from '@aureooms/js-fingertree' ;
import { Measures } from '@functional-abstraction/measure' ;
import { empty } from '@functional-data-structure/finger-tree' ;
import persistent from '@aureooms/js-persistent' ;

let Seq = persistent.seq( empty , Measures.LEN ) ;
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,15 @@
},
"dependencies": {},
"devDependencies": {
"@aureooms/js-fingertree": "6.0.0",
"@aureooms/js-itertools": "5.1.1",
"@aureooms/js-measure": "2.0.1",
"@aureooms/js-predicate": "3.0.1",
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.2",
"@babel/register": "7.13.16",
"@commitlint/cli": "12.1.4",
"@functional-abstraction/measure": "^3.0.0",
"@functional-abstraction/predicate": "^3.0.2",
"@functional-data-structure/finger-tree": "^7.0.0",
"@iterable-iterator/list": "^0.0.2",
"@iterable-iterator/range": "^1.0.0",
"@js-library/commitlint-config": "0.0.4",
"ava": "3.15.0",
"babel-plugin-transform-remove-console": "6.9.4",
Expand Down
4 changes: 2 additions & 2 deletions test/src/heap.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava';

import {Measures} from '@aureooms/js-measure';
import {empty} from '@aureooms/js-fingertree';
import {Measures} from '@functional-abstraction/measure';
import {empty} from '@functional-data-structure/finger-tree';
import {heap} from '../../src/index.js';

const Heap = heap(empty, Measures.PRIO);
Expand Down
6 changes: 3 additions & 3 deletions test/src/indordseq.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import test from 'ava';

import {Measures} from '@aureooms/js-measure';
import {list} from '@aureooms/js-itertools';
import {empty} from '@aureooms/js-fingertree';
import {Measures} from '@functional-abstraction/measure';
import {list} from '@iterable-iterator/list';
import {empty} from '@functional-data-structure/finger-tree';
import {indordseq} from '../../src/index.js';

const {KEY, LEN, KEY_LEN} = Measures;
Expand Down
6 changes: 3 additions & 3 deletions test/src/intervaltree.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import test from 'ava';

import {Measures} from '@aureooms/js-measure';
import {list} from '@aureooms/js-itertools';
import {empty} from '@aureooms/js-fingertree';
import {Measures} from '@functional-abstraction/measure';
import {list} from '@iterable-iterator/list';
import {empty} from '@functional-data-structure/finger-tree';
import {intervaltree} from '../../src/index.js';

const IntervalTree = intervaltree(empty, Measures.INTERVAL);
Expand Down
8 changes: 4 additions & 4 deletions test/src/ordseq.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import test from 'ava';

import {Measures} from '@aureooms/js-measure';
import {ge} from '@aureooms/js-predicate';
import {list} from '@aureooms/js-itertools';
import {empty} from '@aureooms/js-fingertree';
import {Measures} from '@functional-abstraction/measure';
import {ge} from '@functional-abstraction/predicate';
import {list} from '@iterable-iterator/list';
import {empty} from '@functional-data-structure/finger-tree';
import {ordseq} from '../../src/index.js';

const OrdSeq = ordseq(empty, Measures.KEY);
Expand Down
11 changes: 6 additions & 5 deletions test/src/seq.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import test from 'ava';

import {Measures} from '@aureooms/js-measure';
import {gt} from '@aureooms/js-predicate';
import {list, range} from '@aureooms/js-itertools';
import {empty} from '@aureooms/js-fingertree';
import {Measures} from '@functional-abstraction/measure';
import {gt} from '@functional-abstraction/predicate';
import {list} from '@iterable-iterator/list';
import {range} from '@iterable-iterator/range';
import {empty} from '@functional-data-structure/finger-tree';
import {seq} from '../../src/index.js';

const Seq = seq(empty, Measures.SIZE);
Expand Down Expand Up @@ -64,7 +65,7 @@ test('seq', (t) => {
t.throws(s.set.bind(s, list(s).length, 'Z'), {message: /index/});
});

test('@aureooms/js-fingertree github issue #73', (t) => {
test('@functional-data-structure/finger-tree github issue #73', (t) => {
let s = Seq.from('abcde');

for (const x of range(26)) {
Expand Down
Loading

0 comments on commit 58a958a

Please sign in to comment.