Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0296fbc

Browse filesBrowse files
😒 chore: Fix broken links, badges, and dependencies.
1 parent 969df1c commit 0296fbc
Copy full SHA for 0296fbc

File tree

Expand file treeCollapse file tree

4 files changed

+14
-13
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+14
-13
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ import {
2525
} from '@aureooms/js-random' ;
2626
```
2727

28-
[![License](https://img.shields.io/github/license/aureooms/js-random.svg)](https://raw.githubusercontent.com/aureooms/js-random/main/LICENSE)
28+
[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-random.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-random/main/LICENSE)
2929
[![Version](https://img.shields.io/npm/v/@aureooms/js-random.svg)](https://www.npmjs.org/package/@aureooms/js-random)
30-
[![Tests](https://img.shields.io/github/workflow/status/aureooms/js-random/ci:test?event=push&label=tests)](https://github.com/aureooms/js-random/actions/workflows/ci:test.yml?query=branch:main)
31-
[![Dependencies](https://img.shields.io/david/aureooms/js-random.svg)](https://david-dm.org/aureooms/js-random)
32-
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-random.svg)](https://david-dm.org/aureooms/js-random?type=dev)
33-
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-random.svg)](https://github.com/aureooms/js-random/issues)
30+
[![Tests](https://img.shields.io/github/workflow/status/make-github-pseudonymous-again/js-random/ci:test?event=push&label=tests)](https://github.com/make-github-pseudonymous-again/js-random/actions/workflows/ci:test.yml?query=branch:main)
31+
[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-random.svg)](https://david-dm.org/make-github-pseudonymous-again/js-random)
32+
[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-random.svg)](https://david-dm.org/make-github-pseudonymous-again/js-random?type=dev)
33+
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-random.svg)](https://github.com/make-github-pseudonymous-again/js-random/issues)
3434
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-random.svg)](https://www.npmjs.org/package/@aureooms/js-random)
3535

36-
[![Code issues](https://img.shields.io/codeclimate/issues/aureooms/js-random.svg)](https://codeclimate.com/github/aureooms/js-random/issues)
37-
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/aureooms/js-random.svg)](https://codeclimate.com/github/aureooms/js-random/trends/churn)
38-
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/aureooms/js-random/main.svg)](https://codecov.io/gh/aureooms/js-random)
39-
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/aureooms/js-random.svg)](https://codeclimate.com/github/aureooms/js-random/trends/technical_debt)
36+
[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-random.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-random/issues)
37+
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-random.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-random/trends/churn)
38+
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-random/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-random)
39+
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-random.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-random/trends/technical_debt)
4040
[![Documentation](https://make-github-pseudonymous-again.github.io/js-random/badge.svg)](https://make-github-pseudonymous-again.github.io/js-random/source.html)
4141
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-random)](https://bundlephobia.com/result?p=@aureooms/js-random)

‎doc/scripts/header.js

Copy file name to clipboardExpand all lines: doc/scripts/header.js
+2-1Lines 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-random';
20+
testlink.href =
21+
'https://coveralls.io/github/make-github-pseudonymous-again/js-random';
2122
testlink.target = '_BLANK';
2223

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

‎package.json

Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
77
"homepage": "https://make-github-pseudonymous-again.github.io/js-random",
88
"repository": {
9-
"url": "https://github.com/aureooms/js-random",
9+
"url": "https://github.com/make-github-pseudonymous-again/js-random",
1010
"type": "git"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/aureooms/js-random/issues"
13+
"url": "https://github.com/make-github-pseudonymous-again/js-random/issues"
1414
},
1515
"keywords": [
1616
"javascript",

‎renovate.json

Copy file name to clipboard
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.