Skip to content

Commit f4ebea2

Browse files
😒 chore: Fix broken links, badges, and dependencies.
1 parent 588bb63 commit f4ebea2

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Circular Linked Lists for JavaScript.
55
See [docs](https://make-github-pseudonymous-again.github.io/js-cll/index.html).
6-
Parent is [@aureooms/js-data-structures](https://github.com/aureooms/js-data-structures).
6+
Parent is [@aureooms/js-data-structures](https://github.com/make-github-pseudonymous-again/js-data-structures).
77

88
> :warning: The code requires `regeneratorRuntime` to be defined, for instance by importing
99
> [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).
@@ -12,17 +12,17 @@ Parent is [@aureooms/js-data-structures](https://github.com/aureooms/js-data-str
1212
let list = from( "abc" ) ;
1313
```
1414

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

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

doc/manual/example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Examples
22

3-
> More examples in [the test files](https://github.com/aureooms/js-cll/tree/main/test/src).
3+
> More examples in [the test files](https://github.com/make-github-pseudonymous-again/js-cll/tree/main/test/src).

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-cll';
20+
testlink.href =
21+
'https://coveralls.io/github/make-github-pseudonymous-again/js-cll';
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-cll",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/aureooms/js-cll"
10+
"url": "https://github.com/make-github-pseudonymous-again/js-cll"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/aureooms/js-cll/issues"
13+
"url": "https://github.com/make-github-pseudonymous-again/js-cll/issues"
1414
},
1515
"keywords": [
1616
"circular",

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)