Skip to content

Commit

Permalink
Rename package to @aureooms/js-tape (fixes #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Aug 8, 2018
1 parent 49bf774 commit 740336c
Show file tree
Hide file tree
Showing 54 changed files with 273 additions and 269 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[@aureooms/js-stream](https://aureooms.github.io/js-stream)
[@aureooms/js-tape](https://aureooms.github.io/js-tape)
==

Streaming library for JavaScript.
See [docs](https://aureooms.github.io/js-stream/index.html).
Tape library for JavaScript.
See [docs](https://aureooms.github.io/js-tape/index.html).

[![License](https://img.shields.io/github/license/aureooms/js-stream.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-stream/master/LICENSE)
[![NPM version](https://img.shields.io/npm/v/@aureooms/js-stream.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-stream)
[![Build status](https://img.shields.io/travis/aureooms/js-stream.svg?style=flat)](https://travis-ci.org/aureooms/js-stream)
[![Coverage status](https://img.shields.io/coveralls/aureooms/js-stream.svg?style=flat)](https://coveralls.io/r/aureooms/js-stream)
[![Dependencies status](https://img.shields.io/david/aureooms/js-stream.svg?style=flat)](https://david-dm.org/aureooms/js-stream)
[![Dev dependencies status](https://img.shields.io/david/dev/aureooms/js-stream.svg?style=flat)](https://david-dm.org/aureooms/js-stream?type=dev)
[![Code Climate](https://img.shields.io/codeclimate/github/aureooms/js-stream.svg?style=flat)](https://codeclimate.com/github/aureooms/js-stream)
[![NPM downloads per month](https://img.shields.io/npm/dm/@aureooms/js-stream.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-stream)
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-stream.svg?style=flat)](https://github.com/aureooms/js-stream/issues)
[![Documentation](https://aureooms.github.io/js-stream/badge.svg)](https://aureooms.github.io/js-stream/source.html)
[![License](https://img.shields.io/github/license/aureooms/js-tape.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-tape/master/LICENSE)
[![NPM version](https://img.shields.io/npm/v/@aureooms/js-tape.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-tape)
[![Build status](https://img.shields.io/travis/aureooms/js-tape.svg?style=flat)](https://travis-ci.org/aureooms/js-tape)
[![Coverage status](https://img.shields.io/coveralls/aureooms/js-tape.svg?style=flat)](https://coveralls.io/r/aureooms/js-tape)
[![Dependencies status](https://img.shields.io/david/aureooms/js-tape.svg?style=flat)](https://david-dm.org/aureooms/js-tape)
[![Dev dependencies status](https://img.shields.io/david/dev/aureooms/js-tape.svg?style=flat)](https://david-dm.org/aureooms/js-tape?type=dev)
[![Code Climate](https://img.shields.io/codeclimate/github/aureooms/js-tape.svg?style=flat)](https://codeclimate.com/github/aureooms/js-tape)
[![NPM downloads per month](https://img.shields.io/npm/dm/@aureooms/js-tape.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-tape)
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-tape.svg?style=flat)](https://github.com/aureooms/js-tape/issues)
[![Documentation](https://aureooms.github.io/js-tape/badge.svg)](https://aureooms.github.io/js-tape/source.html)
4 changes: 2 additions & 2 deletions doc/manual/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ or [npm](https://github.com/npm/npm).

### jspm
```terminal
jspm install npm:@aureooms/js-stream
jspm install npm:@aureooms/js-tape
```

### npm
```terminal
npm install @aureooms/js-stream --save
npm install @aureooms/js-tape --save
```
4 changes: 2 additions & 2 deletions doc/manual/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'babel-polyfill' ;

Then
```js
const stream = require( '@aureooms/js-stream' ) ;
const tape = require( '@aureooms/js-tape' ) ;
// or
import * as stream from '@aureooms/js-stream' ;
import tape from '@aureooms/js-tape' ;
```
4 changes: 2 additions & 2 deletions doc/scripts/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ domReady(function(){

var projectname = document.createElement('a');
projectname.classList.add('project-name');
projectname.text = 'aureooms/js-stream';
projectname.text = 'aureooms/js-tape';
projectname.href = './index.html' ;

var header = document.getElementsByTagName('header')[0] ;
header.insertBefore(projectname,header.firstChild);

var testlink = document.querySelector('header > a[data-ice="testLink"]') ;
testlink.href = 'https://coveralls.io/github/aureooms/js-stream' ;
testlink.href = 'https://coveralls.io/github/aureooms/js-tape' ;
testlink.target = '_BLANK' ;

var searchBox = document.querySelector('.search-box');
Expand Down
2 changes: 1 addition & 1 deletion esdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"autoPrivate": true
},
"brand": {
"title": "@aureooms/js-stream"
"title": "@aureooms/js-tape"
},
"test": {
"type": "ava",
Expand Down
28 changes: 14 additions & 14 deletions lib/StreamFromCallable.js → lib/TapeFromCallable.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions lib/chain.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions lib/exhaust.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/fromArray.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 740336c

Please sign in to comment.