Skip to content

Commit 9e366b7

Browse files
😒 chore: Fix broken links, badges, and dependencies.
1 parent 7e2eda8 commit 9e366b7

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ and
1414

1515
Mergesort library for JavaScript.
1616
See [docs](https://make-github-pseudonymous-again.github.io/js-mergesort/index.html).
17-
Parent is [aureooms/js-sort](https://github.com/aureooms/js-sort).
17+
Parent is [aureooms/js-sort](https://github.com/make-github-pseudonymous-again/js-sort).
1818

1919
```js
2020
import * as array from '@aureooms/js-array' ;
@@ -34,18 +34,18 @@ import { issorted } from '@aureooms/js-sort' ;
3434
issorted(increasing, b, 0, b.length) ; // true
3535
```
3636

37-
[![License](https://img.shields.io/github/license/aureooms/js-mergesort.svg)](https://raw.githubusercontent.com/aureooms/js-mergesort/main/LICENSE)
37+
[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-mergesort.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-mergesort/main/LICENSE)
3838
[![Version](https://img.shields.io/npm/v/@aureooms/js-mergesort.svg)](https://www.npmjs.org/package/@aureooms/js-mergesort)
39-
[![Build](https://img.shields.io/travis/aureooms/js-mergesort/main.svg)](https://travis-ci.org/aureooms/js-mergesort/branches)
40-
[![Dependencies](https://img.shields.io/david/aureooms/js-mergesort.svg)](https://david-dm.org/aureooms/js-mergesort)
41-
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-mergesort.svg)](https://david-dm.org/aureooms/js-mergesort?type=dev)
42-
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-mergesort.svg)](https://github.com/aureooms/js-mergesort/issues)
39+
[![Build](https://img.shields.io/travis/make-github-pseudonymous-again/js-mergesort/main.svg)](https://travis-ci.org/make-github-pseudonymous-again/js-mergesort/branches)
40+
[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-mergesort.svg)](https://david-dm.org/make-github-pseudonymous-again/js-mergesort)
41+
[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-mergesort.svg)](https://david-dm.org/make-github-pseudonymous-again/js-mergesort?type=dev)
42+
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-mergesort.svg)](https://github.com/make-github-pseudonymous-again/js-mergesort/issues)
4343
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-mergesort.svg)](https://www.npmjs.org/package/@aureooms/js-mergesort)
4444

45-
[![Code issues](https://img.shields.io/codeclimate/issues/aureooms/js-mergesort.svg)](https://codeclimate.com/github/aureooms/js-mergesort/issues)
46-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/aureooms/js-mergesort.svg)](https://codeclimate.com/github/aureooms/js-mergesort/trends/churn)
47-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/aureooms/js-mergesort/main.svg)](https://codecov.io/gh/aureooms/js-mergesort)
48-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/aureooms/js-mergesort.svg)](https://codeclimate.com/github/aureooms/js-mergesort/trends/technical_debt)
45+
[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-mergesort.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-mergesort/issues)
46+
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-mergesort.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-mergesort/trends/churn)
47+
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-mergesort/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-mergesort)
48+
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-mergesort.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-mergesort/trends/technical_debt)
4949
[![Documentation](https://make-github-pseudonymous-again.github.io/js-mergesort//badge.svg)](https://make-github-pseudonymous-again.github.io/js-mergesort//source.html)
5050
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-mergesort)](https://bundlephobia.com/result?p=@aureooms/js-mergesort)
5151

doc/manual/example.md

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

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

66
```js

doc/scripts/header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ domReady(function(){
2020
header.insertBefore(projectname,header.firstChild);
2121

2222
var testlink = document.querySelector('header > a[data-ice="testLink"]') ;
23-
testlink.href = 'https://coveralls.io/github/aureooms/js-mergesort' ;
23+
testlink.href = 'https://coveralls.io/github/make-github-pseudonymous-again/js-mergesort' ;
2424
testlink.target = '_BLANK' ;
2525

2626
var searchBox = document.querySelector('.search-box');

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
}
7474
},
7575
"bugs": {
76-
"url": "https://github.com/aureooms/js-mergesort/issues"
76+
"url": "https://github.com/make-github-pseudonymous-again/js-mergesort/issues"
7777
},
7878
"dependencies": {},
7979
"devDependencies": {
@@ -120,7 +120,7 @@
120120
"license": "AGPL-3.0",
121121
"main": "lib/index.js",
122122
"repository": {
123-
"url": "https://github.com/aureooms/js-mergesort.git",
123+
"url": "https://github.com/make-github-pseudonymous-again/js-mergesort.git",
124124
"type": "git"
125125
},
126126
"scripts": {

0 commit comments

Comments
 (0)