Skip to content

Commit

Permalink
😒 chore: Rename package.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed May 27, 2021
1 parent 58a958a commit e92105a
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .esdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"autoPrivate": true
},
"brand": {
"title": "@aureooms/js-persistent"
"title": "@functional-data-structure/persistent"
},
"test": {
"type": "ava",
Expand Down
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:evergreen_tree:
[@aureooms/js-persistent](https://make-github-pseudonymous-again.github.io/js-persistent)
[@functional-data-structure/persistent](https://functional-data-structure.github.io/persistent)
==

Persistent data structures code bricks for JavaScript. Parent is [aureooms/js-data-structures](https://github.com/make-github-pseudonymous-again/js-data-structures).
Persistent data structures code bricks for JavaScript. Parent is [js-data-structures](https://github.com/make-github-pseudonymous-again/js-data-structures).

```js
let Seq = persistent.seq( fingertree.empty , LEN ) ;
Expand All @@ -13,27 +13,27 @@ let IntervalTree = persistent.intervaltree( fingertree.empty , INTERVAL ) ;
```


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

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


## :baby: Children

This package has one child:

- :cactus: [@functional-data-structure/finger-tree](https://github.com/make-github-pseudonymous-again/js-fingertree): Finger tree data structure for JavaScript
- :cactus: [@functional-data-structure/finger-tree](https://github.com/functional-data-structure/finger-tree): Finger tree data structure for JavaScript


## :scroll: References
Expand Down
2 changes: 1 addition & 1 deletion doc/manual/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
```js
import { Measures } from '@functional-abstraction/measure' ;
import { empty } from '@functional-data-structure/finger-tree' ;
import persistent from '@aureooms/js-persistent' ;
import persistent from '@functional-data-structure/persistent' ;

let Seq = persistent.seq( empty , Measures.LEN ) ;
let Heap = persistent.heap( empty , Measures.MAX ) ;
Expand Down
4 changes: 2 additions & 2 deletions doc/manual/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ or [npm](https://github.com/npm/npm).

### jspm
```terminal
jspm install npm:@aureooms/js-persistent
jspm install npm:@functional-data-structure/persistent
```

### npm
```terminal
npm install @aureooms/js-persistent --save
npm install @functional-data-structure/persistent --save
```
4 changes: 2 additions & 2 deletions doc/manual/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import 'regenerator-runtime/runtime.js' ;

Then
```js
const persistent = require( '@aureooms/js-persistent' ) ;
const persistent = require( '@functional-data-structure/persistent' ) ;
// or
import persistent from '@aureooms/js-persistent' ;
import persistent from '@functional-data-structure/persistent' ;
```
4 changes: 2 additions & 2 deletions doc/scripts/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ const domReady = function (callback) {
domReady(() => {
const projectname = document.createElement('a');
projectname.classList.add('project-name');
projectname.text = 'aureooms/js-persistent';
projectname.text = 'functional-data-structure/persistent';
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-persistent';
'https://coveralls.io/github/functional-data-structure/persistent';
testlink.target = '_BLANK';

const searchBox = document.querySelector('.search-box');
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@aureooms/js-persistent",
"name": "@functional-data-structure/persistent",
"description": "Persistent data structures for JavaScript",
"version": "3.0.0",
"license": "AGPL-3.0",
"author": "Aurélien Ooms <[email protected]>",
"homepage": "https://make-github-pseudonymous-again.github.io/js-persistent",
"author": "make-github-pseudonymous-again",
"homepage": "https://functional-data-structure.github.io/persistent",
"repository": {
"type": "git",
"url": "https://github.com/make-github-pseudonymous-again/js-persistent"
"url": "https://github.com/functional-data-structure/persistent"
},
"bugs": {
"url": "https://github.com/make-github-pseudonymous-again/js-persistent/issues"
"url": "https://github.com/functional-data-structure/persistent/issues"
},
"keywords": [
"data",
Expand Down

0 comments on commit e92105a

Please sign in to comment.