Skip to content

Commit 12ca9eb

Browse files
😒 chore: Fix broken links, badges, and dependencies.
1 parent ff463c9 commit 12ca9eb

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
==
33

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

88
```js
@@ -14,19 +14,19 @@ let tree = from( increasing , range( 100000 ) ) ;
1414

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

19-
[![License](https://img.shields.io/github/license/aureooms/js-red-black-tree.svg)](https://raw.githubusercontent.com/aureooms/js-red-black-tree/main/LICENSE)
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)
2020
[![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/aureooms/js-red-black-tree/ci:test?event=push&label=tests)](https://github.com/aureooms/js-red-black-tree/actions/workflows/ci:test.yml?query=branch:main)
22-
[![Dependencies](https://img.shields.io/david/aureooms/js-red-black-tree.svg)](https://david-dm.org/aureooms/js-red-black-tree)
23-
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-red-black-tree.svg)](https://david-dm.org/aureooms/js-red-black-tree?type=dev)
24-
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-red-black-tree.svg)](https://github.com/aureooms/js-red-black-tree/issues)
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)
2525
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-red-black-tree.svg)](https://www.npmjs.org/package/@aureooms/js-red-black-tree)
2626

27-
[![Code issues](https://img.shields.io/codeclimate/issues/aureooms/js-red-black-tree.svg)](https://codeclimate.com/github/aureooms/js-red-black-tree/issues)
28-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/aureooms/js-red-black-tree.svg)](https://codeclimate.com/github/aureooms/js-red-black-tree/trends/churn)
29-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/aureooms/js-red-black-tree/main.svg)](https://codecov.io/gh/aureooms/js-red-black-tree)
30-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/aureooms/js-red-black-tree.svg)](https://codeclimate.com/github/aureooms/js-red-black-tree/trends/technical_debt)
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)
3131
[![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)
3232
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-red-black-tree)](https://bundlephobia.com/result?p=@aureooms/js-red-black-tree)

doc/scripts/header.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ domReady(() => {
1717
header.insertBefore(projectname, header.firstChild);
1818

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

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

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"homepage": "https://make-github-pseudonymous-again.github.io/js-red-black-tree",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/aureooms/js-red-black-tree"
10+
"url": "https://github.com/make-github-pseudonymous-again/js-red-black-tree"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/aureooms/js-red-black-tree/issues"
13+
"url": "https://github.com/make-github-pseudonymous-again/js-red-black-tree/issues"
1414
},
1515
"keywords": [
1616
"balanced binary search tree",

renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"extends": [
3-
"github>aureooms/renovate-config-js-library"
3+
"github>make-github-pseudonymous-again/renovate-config-js-library"
44
]
55
}

0 commit comments

Comments
 (0)