Skip to content

Commit bbc1cc0

Browse files
😒 chore: Fix broken links, badges, and dependencies.
1 parent b0fa8c3 commit bbc1cc0

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,29 @@
22
==
33

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

88
Finger trees for JavaScript.
99
See [docs](https://make-github-pseudonymous-again.github.io/js-fingertree).
10-
Parent is [@aureooms/js-persistent](https://github.com/aureooms/js-persistent).
10+
Parent is [@aureooms/js-persistent](https://github.com/make-github-pseudonymous-again/js-persistent).
1111

1212
data FingerTree x = Empty
1313
| Single x
1414
| Deep ( Digit x ) ( FingerTree ( Node x ) ) ( Digit x )
1515

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

24-
[![Code issues](https://img.shields.io/codeclimate/issues/aureooms/js-fingertree.svg)](https://codeclimate.com/github/aureooms/js-fingertree/issues)
25-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/aureooms/js-fingertree.svg)](https://codeclimate.com/github/aureooms/js-fingertree/trends/churn)
26-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/aureooms/js-fingertree/main.svg)](https://codecov.io/gh/aureooms/js-fingertree)
27-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/aureooms/js-fingertree.svg)](https://codeclimate.com/github/aureooms/js-fingertree/trends/technical_debt)
24+
[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-fingertree.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-fingertree/issues)
25+
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-fingertree.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-fingertree/trends/churn)
26+
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-fingertree/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-fingertree)
27+
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-fingertree.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-fingertree/trends/technical_debt)
2828
[![Documentation](https://make-github-pseudonymous-again.github.io/js-fingertree/badge.svg)](https://make-github-pseudonymous-again.github.io/js-fingertree/source.html)
2929
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-fingertree)](https://bundlephobia.com/result?p=@aureooms/js-fingertree)
3030

@@ -73,7 +73,7 @@ The data structure is
7373
[fully persistent](https://en.wikipedia.org/wiki/Persistent_data_structure#Fully_persistent):
7474
All methods are pure functions that do not modify their object.
7575

76-
> The [parent project](https://github.com/aureooms/js-persistent) shows how
76+
> The [parent project](https://github.com/make-github-pseudonymous-again/js-persistent) shows how
7777
> specialized persistent data structures can be build on top of those methods.
7878
7979

@@ -107,7 +107,7 @@ const counter = {
107107
See also
108108
[@aureooms/js-measure](https://make-github-pseudonymous-again.github.io/js-measure/file/src/1-api/1-Measures.js.html)
109109
for more examples of measures and see
110-
[@aureooms/js-persistent](https://github.com/aureooms/js-persistent)
110+
[@aureooms/js-persistent](https://github.com/make-github-pseudonymous-again/js-persistent)
111111
for examples of data structures that can be build on top of this abstraction.
112112

113113

doc/scripts/header.js

Lines changed: 2 additions & 1 deletion
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-fingertree';
20+
testlink.href =
21+
'https://coveralls.io/github/make-github-pseudonymous-again/js-fingertree';
2122
testlink.target = '_BLANK';
2223

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"homepage": "https://make-github-pseudonymous-again.github.io/js-fingertree",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/aureooms/js-fingertree"
10+
"url": "https://github.com/make-github-pseudonymous-again/js-fingertree"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/aureooms/js-fingertree/issues"
13+
"url": "https://github.com/make-github-pseudonymous-again/js-fingertree/issues"
1414
},
1515
"keywords": [
1616
"data",

renovate.json

Lines changed: 1 addition & 1 deletion
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)