Skip to content

Commit 1db1c64

Browse files
😒 chore: Rename package.
1 parent ff7b6f8 commit 1db1c64

File tree

7 files changed

+30
-30
lines changed

7 files changed

+30
-30
lines changed

.esdoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"autoPrivate": true
3636
},
3737
"brand": {
38-
"title": "@aureooms/js-persistent-stack"
38+
"title": "@functional-data-structure/persistent-stack"
3939
},
4040
"test": {
4141
"type": "ava",

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
[@aureooms/js-persistent-stack](https://aureooms.github.io/js-persistent-stack)
1+
[@functional-data-structure/persistent-stack](https://functional-data-structure.github.io/persistent-stack)
22
==
33

44
Persistent stack data structures for JavaScript.
5-
See [docs](https://aureooms.github.io/js-persistent-stack/index.html).
5+
See [docs](https://functional-data-structure.github.io/persistent-stack/index.html).
66

77
> :warning: The code requires `regeneratorRuntime` to be defined, for instance by importing
88
> [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).
99
1010
```js
11-
import {empty, from, isEmpty, push, pop, peek, iter} from '@aureooms/js-persistent-stack';
11+
import {empty, from, isEmpty, push, pop, peek, iter} from '@functional-data-structure/persistent-stack';
1212
let stack = from('abc');
1313
let values = [...iter(stack)].join(''); // cba
1414
...
1515
```
1616

17-
[![License](https://img.shields.io/github/license/aureooms/js-persistent-stack.svg)](https://raw.githubusercontent.com/aureooms/js-persistent-stack/main/LICENSE)
18-
[![Version](https://img.shields.io/npm/v/@aureooms/js-persistent-stack.svg)](https://www.npmjs.org/package/@aureooms/js-persistent-stack)
19-
[![Build](https://img.shields.io/travis/aureooms/js-persistent-stack/main.svg)](https://travis-ci.org/aureooms/js-persistent-stack/branches)
20-
[![Dependencies](https://img.shields.io/david/aureooms/js-persistent-stack.svg)](https://david-dm.org/aureooms/js-persistent-stack)
21-
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-persistent-stack.svg)](https://david-dm.org/aureooms/js-persistent-stack?type=dev)
22-
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-persistent-stack.svg)](https://github.com/aureooms/js-persistent-stack/issues)
23-
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-persistent-stack.svg)](https://www.npmjs.org/package/@aureooms/js-persistent-stack)
17+
[![License](https://img.shields.io/github/license/functional-data-structure/persistent-stack.svg)](https://raw.githubusercontent.com/functional-data-structure/persistent-stack/main/LICENSE)
18+
[![Version](https://img.shields.io/npm/v/@functional-data-structure/persistent-stack.svg)](https://www.npmjs.org/package/@functional-data-structure/persistent-stack)
19+
[![Build](https://img.shields.io/travis/functional-data-structure/persistent-stack/main.svg)](https://travis-ci.org/functional-data-structure/persistent-stack/branches)
20+
[![Dependencies](https://img.shields.io/david/functional-data-structure/persistent-stack.svg)](https://david-dm.org/functional-data-structure/persistent-stack)
21+
[![Dev dependencies](https://img.shields.io/david/dev/functional-data-structure/persistent-stack.svg)](https://david-dm.org/functional-data-structure/persistent-stack?type=dev)
22+
[![GitHub issues](https://img.shields.io/github/issues/functional-data-structure/persistent-stack.svg)](https://github.com/functional-data-structure/persistent-stack/issues)
23+
[![Downloads](https://img.shields.io/npm/dm/@functional-data-structure/persistent-stack.svg)](https://www.npmjs.org/package/@functional-data-structure/persistent-stack)
2424

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

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-persistent-stack/tree/main/test/src).
3+
> More examples in [the test files](https://github.com/functional-data-structure/persistent-stack/tree/main/test/src).

doc/manual/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ or [jspm](https://jspm.org/docs).
88

99
### yarn
1010
```terminal
11-
yarn add @aureooms/js-persistent-stack
11+
yarn add @functional-data-structure/persistent-stack
1212
```
1313

1414
### npm
1515
```terminal
16-
npm install @aureooms/js-persistent-stack --save
16+
npm install @functional-data-structure/persistent-stack --save
1717
```
1818

1919
### jspm
2020
```terminal
21-
jspm install npm:@aureooms/js-persistent-stack
21+
jspm install npm:@functional-data-structure/persistent-stack
2222
```

doc/manual/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import 'regenerator-runtime/runtime.js' ;
1212

1313
Then, import the library where needed
1414
```js
15-
const persistentstack = require( '@aureooms/js-persistent-stack' ) ;
15+
const persistentstack = require( '@functional-data-structure/persistent-stack' ) ;
1616
// or
17-
import * as persistentstack from '@aureooms/js-persistent-stack' ;
17+
import * as persistentstack from '@functional-data-structure/persistent-stack' ;
1818
```

doc/scripts/header.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ domReady(function(){
1313

1414
var projectname = document.createElement('a');
1515
projectname.classList.add('project-name');
16-
projectname.text = 'aureooms/js-persistent-stack';
16+
projectname.text = 'functional-data-structure/persistent-stack';
1717
projectname.href = './index.html' ;
1818

1919
var header = document.getElementsByTagName('header')[0] ;
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-persistent-stack' ;
23+
testlink.href = 'https://coveralls.io/github/functional-data-structure/persistent-stack' ;
2424
testlink.target = '_BLANK' ;
2525

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

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@aureooms/js-persistent-stack",
2+
"name": "@functional-data-structure/persistent-stack",
33
"description": "Persistent stack data structures for JavaScript",
44
"version": "0.0.0",
5-
"author": "aureooms",
5+
"author": "make-github-pseudonymous-again",
66
"ava": {
77
"files": [
88
"test/src/**/*"
@@ -73,7 +73,7 @@
7373
}
7474
},
7575
"bugs": {
76-
"url": "https://github.com/aureooms/js-persistent-stack/issues"
76+
"url": "https://github.com/functional-data-structure/persistent-stack/issues"
7777
},
7878
"dependencies": {
7979
"@failure-abstraction/error": "^6.0.1",
@@ -108,7 +108,7 @@
108108
"files": [
109109
"lib"
110110
],
111-
"homepage": "https://aureooms.github.io/js-persistent-stack",
111+
"homepage": "https://functional-data-structure.github.io/persistent-stack",
112112
"keywords": [
113113
"data",
114114
"persistent",
@@ -122,7 +122,7 @@
122122
},
123123
"repository": {
124124
"type": "git",
125-
"url": "https://github.com/aureooms/js-persistent-stack"
125+
"url": "https://github.com/functional-data-structure/persistent-stack"
126126
},
127127
"scripts": {
128128
"build": "babel --delete-dir-on-start --env-name production src -d lib",

0 commit comments

Comments
 (0)