Skip to content

Commit 4dc5bdb

Browse files
😒 chore: Rename package.
1 parent 9cf90e2 commit 4dc5bdb

36 files changed

+1386
-2207
lines changed

.esdoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"autoPrivate": true
4242
},
4343
"brand": {
44-
"title": "@aureooms/js-tape"
44+
"title": "@async-abstraction/tape"
4545
},
4646
"test": {
4747
"type": "ava",

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[@aureooms/js-tape](https://make-github-pseudonymous-again.github.io/js-tape)
1+
[@async-abstraction/tape](https://async-abstraction.github.io/tape)
22
==
33

44
Tape library for JavaScript. Served with asynchronous goodness.
5-
See [docs](https://make-github-pseudonymous-again.github.io/js-tape/index.html).
5+
See [docs](https://async-abstraction.github.io/tape/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).
@@ -13,17 +13,17 @@ const myTape = tape.fromReadStream( stdin ) ;
1313
for await ( const character of myTape ) ... ;
1414
```
1515

16-
[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-tape.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-tape/main/LICENSE)
17-
[![Version](https://img.shields.io/npm/v/@aureooms/js-tape.svg)](https://www.npmjs.org/package/@aureooms/js-tape)
18-
[![Build](https://img.shields.io/travis/make-github-pseudonymous-again/js-tape/main.svg)](https://travis-ci.org/make-github-pseudonymous-again/js-tape/branches)
19-
[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-tape.svg)](https://david-dm.org/make-github-pseudonymous-again/js-tape)
20-
[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-tape.svg)](https://david-dm.org/make-github-pseudonymous-again/js-tape?type=dev)
21-
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-tape.svg)](https://github.com/make-github-pseudonymous-again/js-tape/issues)
22-
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-tape.svg)](https://www.npmjs.org/package/@aureooms/js-tape)
16+
[![License](https://img.shields.io/github/license/async-abstraction/tape.svg)](https://raw.githubusercontent.com/async-abstraction/tape/main/LICENSE)
17+
[![Version](https://img.shields.io/npm/v/@async-abstraction/tape.svg)](https://www.npmjs.org/package/@async-abstraction/tape)
18+
[![Build](https://img.shields.io/travis/async-abstraction/tape/main.svg)](https://travis-ci.org/async-abstraction/tape/branches)
19+
[![Dependencies](https://img.shields.io/david/async-abstraction/tape.svg)](https://david-dm.org/async-abstraction/tape)
20+
[![Dev dependencies](https://img.shields.io/david/dev/async-abstraction/tape.svg)](https://david-dm.org/async-abstraction/tape?type=dev)
21+
[![GitHub issues](https://img.shields.io/github/issues/async-abstraction/tape.svg)](https://github.com/async-abstraction/tape/issues)
22+
[![Downloads](https://img.shields.io/npm/dm/@async-abstraction/tape.svg)](https://www.npmjs.org/package/@async-abstraction/tape)
2323

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

doc/manual/example.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# Examples
22

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

66
## Import
77

88
```js
9-
import tape from '@aureooms/js-tape' ;
9+
import tape from '@async-abstraction/tape' ;
1010
```
1111

1212

1313
## `fromString`
1414

1515
```js
16-
import tape from '@aureooms/js-tape' ;
16+
import tape from '@async-abstraction/tape' ;
1717
const myTape = tape.fromString( 'abracadabra' ) ;
1818
// // OR
1919
// const myTape = tape.fromArray( ... ) ;

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-tape
11+
yarn add @async-abstraction/tape
1212
```
1313

1414
### npm
1515
```terminal
16-
npm install @aureooms/js-tape --save
16+
npm install @async-abstraction/tape --save
1717
```
1818

1919
### jspm
2020
```terminal
21-
jspm install npm:@aureooms/js-tape
21+
jspm install npm:@async-abstraction/tape
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 tape = require( '@aureooms/js-tape' ) ;
15+
const tape = require( '@async-abstraction/tape' ) ;
1616
// or
17-
import tape from '@aureooms/js-tape' ;
17+
import tape from '@async-abstraction/tape' ;
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-tape';
16+
projectname.text = 'async-abstraction/tape';
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/make-github-pseudonymous-again/js-tape' ;
23+
testlink.href = 'https://coveralls.io/github/async-abstraction/tape' ;
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-tape",
2+
"name": "@async-abstraction/tape",
33
"description": "Tape library for JavaScript",
44
"version": "7.0.0",
5-
"author": "aureooms",
5+
"author": "make-github-pseudonymous-again",
66
"ava": {
77
"files": [
88
"test/src/**/*"
@@ -30,7 +30,7 @@
3030
}
3131
},
3232
"bugs": {
33-
"url": "https://github.com/make-github-pseudonymous-again/js-tape/issues"
33+
"url": "https://github.com/async-abstraction/tape/issues"
3434
},
3535
"dependencies": {},
3636
"devDependencies": {
@@ -57,7 +57,7 @@
5757
"files": [
5858
"lib"
5959
],
60-
"homepage": "https://make-github-pseudonymous-again.github.io/js-tape",
60+
"homepage": "https://async-abstraction.github.io/tape",
6161
"keywords": [
6262
"parsing",
6363
"read",
@@ -69,7 +69,7 @@
6969
"main": "lib/index.js",
7070
"repository": {
7171
"type": "git",
72-
"url": "https://github.com/make-github-pseudonymous-again/js-tape"
72+
"url": "https://github.com/async-abstraction/tape"
7373
},
7474
"scripts": {
7575
"build": "babel --delete-dir-on-start --env-name production src -d lib",

src/Tape.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import eof from './eof';
2-
import toAsyncIterator from './toAsyncIterator';
1+
import eof from './eof.js';
2+
import toAsyncIterator from './toAsyncIterator.js';
33

44
/**
55
* Class that wraps a callable with a tape.

src/chain.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import fromAsyncIterable from './fromAsyncIterable';
2-
import toAsyncIterable from './toAsyncIterable';
3-
import asyncIterableChain from './asyncIterableChain';
4-
import asyncIterableMap from './asyncIterableMap';
1+
import fromAsyncIterable from './fromAsyncIterable.js';
2+
import toAsyncIterable from './toAsyncIterable.js';
3+
import asyncIterableChain from './asyncIterableChain.js';
4+
import asyncIterableMap from './asyncIterableMap.js';
55

66
/**
77
* Converts a tape of tapes of tokens to a tape of tokens.

src/fromArray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fromIterable from './fromIterable';
1+
import fromIterable from './fromIterable.js';
22

33
/**
44
* Converts an array to a tape.

src/fromAsyncIterable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fromIterator from './fromIterator';
1+
import fromIterator from './fromIterator.js';
22

33
/**
44
* Converts an asynchronous iterable to a tape.

src/fromCallable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Tape from './Tape';
1+
import Tape from './Tape.js';
22

33
/**
44
* Converts a callable to a tape.

src/fromIterable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fromIterator from './fromIterator';
1+
import fromIterator from './fromIterator.js';
22

33
/**
44
* Converts an iterable to a tape.

src/fromIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fromCallable from './fromCallable';
1+
import fromCallable from './fromCallable.js';
22

33
/**
44
* Converts an iterator to a tape.

src/fromReadStream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fromAsyncIterable from './fromAsyncIterable';
1+
import fromAsyncIterable from './fromAsyncIterable.js';
22

33
/**
44
* Converts a ReadStream object to an async iterable of tokens.

src/fromString.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fromIterable from './fromIterable';
1+
import fromIterable from './fromIterable.js';
22

33
/**
44
* Converts a string to a tape.

src/ignore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import split from './split';
2-
import chain from './chain';
1+
import split from './split.js';
2+
import chain from './chain.js';
33

44
/**
55
* Filters a tape by ignoring a given set of tokens.

src/index.js

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
import eof from './eof';
2-
import Tape from './Tape';
3-
import asyncIterableChain from './asyncIterableChain';
4-
import asyncIterableMap from './asyncIterableMap';
5-
import asyncIterableToArray from './asyncIterableToArray';
6-
import chain from './chain';
7-
import exhaust from './exhaust';
8-
import fromArray from './fromArray';
9-
import fromAsyncIterable from './fromAsyncIterable';
10-
import fromCallable from './fromCallable';
11-
import fromIterable from './fromIterable';
12-
import fromIterator from './fromIterator';
13-
import fromReadStream from './fromReadStream';
14-
import fromString from './fromString';
15-
import ignore from './ignore';
16-
import map from './map';
17-
import skip from './skip';
18-
import split from './split';
19-
import toArray from './toArray';
20-
import toAsyncCallable from './toAsyncCallable';
21-
import toAsyncIterable from './toAsyncIterable';
22-
import toAsyncIterator from './toAsyncIterator';
23-
import toString from './toString';
1+
import eof from './eof.js';
2+
import Tape from './Tape.js';
3+
import asyncIterableChain from './asyncIterableChain.js';
4+
import asyncIterableMap from './asyncIterableMap.js';
5+
import asyncIterableToArray from './asyncIterableToArray.js';
6+
import chain from './chain.js';
7+
import exhaust from './exhaust.js';
8+
import fromArray from './fromArray.js';
9+
import fromAsyncIterable from './fromAsyncIterable.js';
10+
import fromCallable from './fromCallable.js';
11+
import fromIterable from './fromIterable.js';
12+
import fromIterator from './fromIterator.js';
13+
import fromReadStream from './fromReadStream.js';
14+
import fromString from './fromString.js';
15+
import ignore from './ignore.js';
16+
import map from './map.js';
17+
import skip from './skip.js';
18+
import split from './split.js';
19+
import toArray from './toArray.js';
20+
import toAsyncCallable from './toAsyncCallable.js';
21+
import toAsyncIterable from './toAsyncIterable.js';
22+
import toAsyncIterator from './toAsyncIterator.js';
23+
import toString from './toString.js';
2424

2525
export default {
2626
eof,

src/map.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import fromAsyncIterable from './fromAsyncIterable';
2-
import toAsyncIterable from './toAsyncIterable';
3-
import asyncIterableMap from './asyncIterableMap';
1+
import fromAsyncIterable from './fromAsyncIterable.js';
2+
import toAsyncIterable from './toAsyncIterable.js';
3+
import asyncIterableMap from './asyncIterableMap.js';
44

55
/**
66
* Applies a callable to each token of a tape.

src/split.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import fromAsyncIterable from './fromAsyncIterable';
2-
import exhaust from './exhaust';
1+
import fromAsyncIterable from './fromAsyncIterable.js';
2+
import exhaust from './exhaust.js';
33

44
/**
55
* Splits the input tape into a tape of tapes according to some set of

src/toArray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import toAsyncIterable from './toAsyncIterable';
2-
import asyncIterableToArray from './asyncIterableToArray';
1+
import toAsyncIterable from './toAsyncIterable.js';
2+
import asyncIterableToArray from './asyncIterableToArray.js';
33

44
/**
55
* Converts a tape to an array.

src/toAsyncCallable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import toAsyncIterator from './toAsyncIterator';
1+
import toAsyncIterator from './toAsyncIterator.js';
22

33
/**
44
* Converts a tape to a callable.

src/toAsyncIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import toAsyncIterable from './toAsyncIterable';
1+
import toAsyncIterable from './toAsyncIterable.js';
22

33
/**
44
* Converts a tape to an async iterator.

src/toString.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import toArray from './toArray';
1+
import toArray from './toArray.js';
22

33
/**
44
* Converts a tape to a string.

test/src/asyncIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import fromString from '../../src/fromString';
3+
import fromString from '../../src/fromString.js';
44

55
/**
66
* @test {Tape#[Symbol.asyncIterator]}

test/src/fromReadStream.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import fs from 'fs';
22
import test from 'ava';
33

4-
import fromReadStream from '../../src/fromReadStream';
5-
import toString from '../../src/toString';
4+
import fromReadStream from '../../src/fromReadStream.js';
5+
import toString from '../../src/toString.js';
66

77
test('unread token', async (t) => {
88
const filepath = 'test/data/hello-world.txt';

test/src/ignore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {fromString, ignore, toString} from '../../src';
3+
import {fromString, ignore, toString} from '../../src/index.js';
44

55
/**
66
* @test {ignore}

test/src/iterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import fromString from '../../src/fromString';
3+
import fromString from '../../src/fromString.js';
44

55
/**
66
* Checks that trying to access the synchronous iterator of a tape throws.

test/src/map.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import test from 'ava';
22

3-
import fromString from '../../src/fromString';
4-
import map from '../../src/map';
5-
import toString from '../../src/toString';
3+
import fromString from '../../src/fromString.js';
4+
import map from '../../src/map.js';
5+
import toString from '../../src/toString.js';
66

77
/**
88
* @test {map}

test/src/promise.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import fromString from '../../src/fromString';
3+
import fromString from '../../src/fromString.js';
44

55
/**
66
* @test {fromString}

test/src/skip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {fromString, skip} from '../../src';
3+
import {fromString, skip} from '../../src/index.js';
44

55
/**
66
* @test {fromString}

test/src/split.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
22

3-
import {fromString, split, toString} from '../../src';
3+
import {fromString, split, toString} from '../../src/index.js';
44

55
/**
66
* @test {split}

0 commit comments

Comments
 (0)