Skip to content

Commit

Permalink
📚 docs: Update links.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Apr 29, 2021
1 parent c5962a8 commit e35ca8a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 20 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:clown_face: [total-order](https://make-github-pseudonymous-again.github.io/js-total-order)
:clown_face: [total-order](https://total-order.github.io/any)
==

A total order for all JavaScript values.
See [docs](https://make-github-pseudonymous-again.github.io/js-total-order/index.html).
See [docs](https://total-order.github.io/any/index.html).

> :warning: The code requires `regeneratorRuntime` to be defined, for instance by importing
> [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).
Expand Down Expand Up @@ -39,17 +39,17 @@ import totalOrder from 'total-order'
// ]
```

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

[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-total-order.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-total-order/issues)
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-total-order.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-total-order/trends/churn)
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-total-order/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-total-order)
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-total-order.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-total-order/trends/technical_debt)
[![Documentation](https://make-github-pseudonymous-again.github.io/js-total-order/badge.svg)](https://make-github-pseudonymous-again.github.io/js-total-order/source.html)
[![Code issues](https://img.shields.io/codeclimate/issues/total-order/any.svg)](https://codeclimate.com/github/total-order/any/issues)
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/total-order/any.svg)](https://codeclimate.com/github/total-order/any/trends/churn)
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/total-order/any/main.svg)](https://codecov.io/gh/total-order/any)
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/total-order/any.svg)](https://codeclimate.com/github/total-order/any/trends/technical_debt)
[![Documentation](https://total-order.github.io/any/badge.svg)](https://total-order.github.io/any/source.html)
[![Package size](https://img.shields.io/bundlephobia/minzip/total-order)](https://bundlephobia.com/result?p=total-order)
2 changes: 1 addition & 1 deletion doc/manual/example.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Examples

> More examples in [the test files](https://github.com/make-github-pseudonymous-again/js-total-order/tree/main/test/src).
> More examples in [the test files](https://github.com/total-order/any/tree/main/test/src).
5 changes: 2 additions & 3 deletions doc/scripts/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ const domReady = function (callback) {
domReady(() => {
const projectname = document.createElement('a');
projectname.classList.add('project-name');
projectname.text = 'aureooms/js-total-order';
projectname.text = 'total-order/any';
projectname.href = './index.html';

const header = document.querySelector('header');
header.insertBefore(projectname, header.firstChild);

const testlink = document.querySelector('header > a[data-ice="testLink"]');
testlink.href =
'https://coveralls.io/github/make-github-pseudonymous-again/js-total-order';
testlink.href = 'https://app.codecov.io/gh/total-order/any';
testlink.target = '_BLANK';

const searchBox = document.querySelector('.search-box');
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"description": "A total order for all JavaScript values",
"version": "1.0.1",
"license": "AGPL-3.0",
"author": "aureooms",
"homepage": "https://make-github-pseudonymous-again.github.io/js-total-order",
"author": "make-github-pseudonymous-again",
"homepage": "https://total-order.github.io/any",
"repository": {
"type": "git",
"url": "https://github.com/make-github-pseudonymous-again/js-total-order"
"url": "https://github.com/total-order/any"
},
"bugs": {
"url": "https://github.com/make-github-pseudonymous-again/js-total-order/issues"
"url": "https://github.com/total-order/any/issues"
},
"keywords": [
"arrays",
Expand Down

0 comments on commit e35ca8a

Please sign in to comment.