Skip to content

Commit d823380

Browse files
😒 chore: Rename package.
1 parent c856aa8 commit d823380

16 files changed

+654
-1477
lines changed

.esdoc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"autoPrivate": true
1818
},
1919
"brand": {
20-
"title": "@aureooms/js-red-black-tree"
20+
"title": "@binary-search-tree/red-black-tree"
2121
},
2222
"test": {
2323
"type": "ava",

README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
:christmas_tree: [@aureooms/js-red-black-tree](https://make-github-pseudonymous-again.github.io/js-red-black-tree)
1+
:christmas_tree: [@binary-search-tree/red-black-tree](https://binary-search-tree.github.io/red-black-tree)
22
==
33

44
<p align="center">
5-
<img src="https://cdn.rawgit.com/make-github-pseudonymous-again/js-red-black-tree/main/media/sketch.svg" width="480">
5+
<img src="https://cdn.rawgit.com/binary-search-tree/red-black-tree/main/media/sketch.svg" width="480">
66
</p>
77

88
```js
9-
import {from} from '@aureooms/js-red-black-tree';
10-
import {increasing} from '@aureooms/js-compare';
11-
import {range} from '@aureooms/js-itertools';
9+
import {from} from '@binary-search-tree/red-black-tree';
10+
import {increasing} from '@total-order/primitive';
11+
import {range} from '@iterable-iterator/range';
1212
let tree = from( increasing , range( 100000 ) ) ;
1313
```
1414

1515
Red-black tree library for JavaScript.
16-
See [documentation](https://make-github-pseudonymous-again.github.io/js-red-black-tree/index.html).
17-
Parent is [@aureooms/js-bst](https://github.com/make-github-pseudonymous-again/js-bst).
16+
See [documentation](https://binary-search-tree.github.io/red-black-tree/index.html).
17+
Parent is [js-bst](https://github.com/make-github-pseudonymous-again/js-bst).
1818

19-
[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-red-black-tree.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-red-black-tree/main/LICENSE)
20-
[![Version](https://img.shields.io/npm/v/@aureooms/js-red-black-tree.svg)](https://www.npmjs.org/package/@aureooms/js-red-black-tree)
21-
[![Tests](https://img.shields.io/github/workflow/status/make-github-pseudonymous-again/js-red-black-tree/ci:test?event=push&label=tests)](https://github.com/make-github-pseudonymous-again/js-red-black-tree/actions/workflows/ci:test.yml?query=branch:main)
22-
[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-red-black-tree.svg)](https://david-dm.org/make-github-pseudonymous-again/js-red-black-tree)
23-
[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-red-black-tree.svg)](https://david-dm.org/make-github-pseudonymous-again/js-red-black-tree?type=dev)
24-
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-red-black-tree.svg)](https://github.com/make-github-pseudonymous-again/js-red-black-tree/issues)
25-
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-red-black-tree.svg)](https://www.npmjs.org/package/@aureooms/js-red-black-tree)
19+
[![License](https://img.shields.io/github/license/binary-search-tree/red-black-tree.svg)](https://raw.githubusercontent.com/binary-search-tree/red-black-tree/main/LICENSE)
20+
[![Version](https://img.shields.io/npm/v/@binary-search-tree/red-black-tree.svg)](https://www.npmjs.org/package/@binary-search-tree/red-black-tree)
21+
[![Tests](https://img.shields.io/github/workflow/status/binary-search-tree/red-black-tree/ci:test?event=push&label=tests)](https://github.com/binary-search-tree/red-black-tree/actions/workflows/ci:test.yml?query=branch:main)
22+
[![Dependencies](https://img.shields.io/david/binary-search-tree/red-black-tree.svg)](https://david-dm.org/binary-search-tree/red-black-tree)
23+
[![Dev dependencies](https://img.shields.io/david/dev/binary-search-tree/red-black-tree.svg)](https://david-dm.org/binary-search-tree/red-black-tree?type=dev)
24+
[![GitHub issues](https://img.shields.io/github/issues/binary-search-tree/red-black-tree.svg)](https://github.com/binary-search-tree/red-black-tree/issues)
25+
[![Downloads](https://img.shields.io/npm/dm/@binary-search-tree/red-black-tree.svg)](https://www.npmjs.org/package/@binary-search-tree/red-black-tree)
2626

27-
[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-red-black-tree.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-red-black-tree/issues)
28-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-red-black-tree.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-red-black-tree/trends/churn)
29-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-red-black-tree/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-red-black-tree)
30-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-red-black-tree.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-red-black-tree/trends/technical_debt)
31-
[![Documentation](https://make-github-pseudonymous-again.github.io/js-red-black-tree/badge.svg)](https://make-github-pseudonymous-again.github.io/js-red-black-tree/source.html)
32-
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-red-black-tree)](https://bundlephobia.com/result?p=@aureooms/js-red-black-tree)
27+
[![Code issues](https://img.shields.io/codeclimate/issues/binary-search-tree/red-black-tree.svg)](https://codeclimate.com/github/binary-search-tree/red-black-tree/issues)
28+
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/binary-search-tree/red-black-tree.svg)](https://codeclimate.com/github/binary-search-tree/red-black-tree/trends/churn)
29+
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/binary-search-tree/red-black-tree/main.svg)](https://codecov.io/gh/binary-search-tree/red-black-tree)
30+
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/binary-search-tree/red-black-tree.svg)](https://codeclimate.com/github/binary-search-tree/red-black-tree/trends/technical_debt)
31+
[![Documentation](https://binary-search-tree.github.io/red-black-tree/badge.svg)](https://binary-search-tree.github.io/red-black-tree/source.html)
32+
[![Package size](https://img.shields.io/bundlephobia/minzip/@binary-search-tree/red-black-tree)](https://bundlephobia.com/result?p=@binary-search-tree/red-black-tree)

doc/manual/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ or [npm](https://github.com/npm/npm).
55

66
### jspm
77
```terminal
8-
jspm install npm:@aureooms/js-red-black-tree
8+
jspm install npm:@binary-search-tree/red-black-tree
99
```
1010

1111
### npm
1212
```terminal
13-
npm install @aureooms/js-red-black-tree --save
13+
npm install @binary-search-tree/red-black-tree --save
1414
```

doc/manual/usage.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'regenerator-runtime/runtime.js' ;
99

1010
Then
1111
```js
12-
const { empty , from } = require( '@aureooms/js-red-black-tree' ) ;
12+
const { empty , from } = require( '@binary-search-tree/red-black-tree' ) ;
1313
// or
14-
import { empty , from } from '@aureooms/js-red-black-tree' ;
14+
import { empty , from } from '@binary-search-tree/red-black-tree' ;
1515
```

doc/scripts/header.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ const domReady = function (callback) {
1010
domReady(() => {
1111
const projectname = document.createElement('a');
1212
projectname.classList.add('project-name');
13-
projectname.text = 'aureooms/js-red-black-tree';
13+
projectname.text = 'binary-search-tree/red-black-tree';
1414
projectname.href = './index.html';
1515

1616
const header = document.querySelector('header');
1717
header.insertBefore(projectname, header.firstChild);
1818

1919
const testlink = document.querySelector('header > a[data-ice="testLink"]');
2020
testlink.href =
21-
'https://coveralls.io/github/make-github-pseudonymous-again/js-red-black-tree';
21+
'https://coveralls.io/github/binary-search-tree/red-black-tree';
2222
testlink.target = '_BLANK';
2323

2424
const searchBox = document.querySelector('.search-box');

package.json

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "@aureooms/js-red-black-tree",
2+
"name": "@binary-search-tree/red-black-tree",
33
"description": "Red-black tree library for JavaScript",
44
"version": "9.0.0",
55
"license": "AGPL-3.0",
6-
"author": "Aurélien Ooms <[email protected]>",
7-
"homepage": "https://make-github-pseudonymous-again.github.io/js-red-black-tree",
6+
"author": "make-github-pseudonymous-again",
7+
"homepage": "https://binary-search-tree.github.io/red-black-tree",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/make-github-pseudonymous-again/js-red-black-tree"
10+
"url": "https://github.com/binary-search-tree/red-black-tree"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/make-github-pseudonymous-again/js-red-black-tree/issues"
13+
"url": "https://github.com/binary-search-tree/red-black-tree/issues"
1414
},
1515
"keywords": [
1616
"balanced binary search tree",
@@ -59,15 +59,20 @@
5959
"test": "ava"
6060
},
6161
"devDependencies": {
62-
"@aureooms/js-compare": "2.0.1",
63-
"@aureooms/js-itertools": "5.1.1",
64-
"@aureooms/js-pseudo-random": "2.0.0",
65-
"@aureooms/js-random": "3.4.0",
6662
"@babel/core": "7.14.6",
6763
"@babel/preset-env": "7.14.7",
6864
"@babel/register": "7.14.5",
6965
"@commitlint/cli": "12.1.4",
66+
"@entropy-source/pseudo-random": "^4.0.0",
67+
"@iterable-iterator/consume": "^1.0.1",
68+
"@iterable-iterator/list": "^1.0.1",
69+
"@iterable-iterator/range": "^2.0.1",
70+
"@iterable-iterator/slice": "^1.0.1",
71+
"@iterable-iterator/sorted": "^1.0.0",
72+
"@iterable-iterator/zip": "^1.0.1",
7073
"@js-library/commitlint-config": "0.0.4",
74+
"@randomized/random": "^4.0.0",
75+
"@total-order/primitive": "^1.0.1",
7176
"ava": "3.15.0",
7277
"babel-plugin-transform-remove-console": "6.9.4",
7378
"babel-plugin-unassert": "3.1.0",

test/fixtures.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import {increasing as _inc, decreasing as _dec} from '@aureooms/js-compare';
1+
import {increasing as _inc, decreasing as _dec} from '@total-order/primitive';
22

33
export const increasing = (a, b) => _inc(a, b);
44
increasing.step = 1;
55
export const decreasing = (a, b) => _dec(a, b);
66
decreasing.step = -1;
77

8-
import {_fisheryates, _shuffle, _randint} from '@aureooms/js-random';
9-
import {splitmix64, nextFloat64} from '@aureooms/js-pseudo-random';
8+
import {_fisheryates, _shuffle, _randint} from '@randomized/random';
9+
import {splitmix64, nextFloat64} from '@entropy-source/pseudo-random';
1010

1111
export const entropy = (seed) => {
1212
const prng = splitmix64(seed);

test/src/RedBlackTree/get.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import test from 'ava';
22

33
import {increasing, decreasing} from '../../fixtures.js';
44

5-
import {range} from '@aureooms/js-itertools';
5+
import {range} from '@iterable-iterator/range';
66

77
import {RedBlackTree} from '../../../src/index.js';
88

test/src/RedBlackTree/has.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import test from 'ava';
22

33
import {increasing, decreasing} from '../../fixtures.js';
44

5-
import {range} from '@aureooms/js-itertools';
5+
import {range} from '@iterable-iterator/range';
66

77
import {RedBlackTree} from '../../../src/index.js';
88

test/src/RedBlackTree/isEmpty.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {range} from '@aureooms/js-itertools';
3+
import {range} from '@iterable-iterator/range';
44

55
import {increasing, decreasing} from '../../fixtures.js';
66

test/src/RedBlackTree/iter.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import test from 'ava';
22

33
import {increasing, decreasing} from '../../fixtures.js';
44

5-
import {list, range} from '@aureooms/js-itertools';
5+
import {list} from '@iterable-iterator/list';
6+
import {range} from '@iterable-iterator/range';
67

78
import {RedBlackTree} from '../../../src/index.js';
89

test/src/RedBlackTree/range.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ import test from 'ava';
22

33
import {increasing, decreasing} from '../../fixtures.js';
44

5-
import {list, range} from '@aureooms/js-itertools';
5+
import {list} from '@iterable-iterator/list';
6+
import {range} from '@iterable-iterator/range';
67

7-
import {shuffle} from '@aureooms/js-random';
8+
import {shuffle} from '@randomized/random';
89

910
import {RedBlackTree} from '../../../src/index.js';
1011

test/src/RedBlackTree/refs.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import test from 'ava';
22

33
import {increasing, entropy} from '../../fixtures.js';
44

5-
import {list, range, zip} from '@aureooms/js-itertools';
5+
import {list} from '@iterable-iterator/list';
6+
import {range} from '@iterable-iterator/range';
7+
import {zip} from '@iterable-iterator/zip';
68

79
import {empty} from '../../../src/index.js';
810

test/src/RedBlackTree/remove.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ import test from 'ava';
22

33
import {increasing, entropy} from '../../fixtures.js';
44

5-
import {list, range, sorted, head, iter, exhaust} from '@aureooms/js-itertools';
5+
import {list} from '@iterable-iterator/list';
6+
import {range} from '@iterable-iterator/range';
7+
import {sorted} from '@iterable-iterator/sorted';
8+
import {head} from '@iterable-iterator/slice';
9+
import {iter} from '@iterable-iterator/iter';
10+
import {exhaust} from '@iterable-iterator/consume';
611

712
const seed = [0, 17];
813
const {shuffle} = entropy(seed);

test/src/regression/deletion.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {list} from '@aureooms/js-itertools';
3+
import {list} from '@iterable-iterator/list';
44
import {increasing} from '../../fixtures.js';
55
import {RedBlackTree} from '../../../src/index.js';
66

0 commit comments

Comments
 (0)