From 1a1780303d338a88abcb261be3c8e57e399c9b3a Mon Sep 17 00:00:00 2001 From: Francis Gulotta Date: Sun, 13 May 2018 00:57:03 -0400 Subject: [PATCH] fix: naming is hard for so many reasons --- README.md | 4 ++-- example.js | 2 +- package-lock.json | 2 +- package.json | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f2368f37..695f7bd4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# iterator-streams +# streaming-iterables -[![Build Status](https://travis-ci.org/reconbot/iterator-streams.svg?branch=master)](https://travis-ci.org/reconbot/iterator-streams) [![Try iterator-streams on RunKit](https://badge.runkitcdn.com/iterator-streams.svg)](https://npm.runkit.com/iterator-streams) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) +[![Build Status](https://travis-ci.org/reconbot/streaming-iterables.svg?branch=master)](https://travis-ci.org/reconbot/streaming-iterables) [![Try streaming-iterables on RunKit](https://badge.runkitcdn.com/streaming-iterables.svg)](https://npm.runkit.com/streaming-iterables) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) A collection of utilities that work with sync and async iterables and iterators. Designed to replace your streams. Think some sort of combination of [`bluestream`](https://www.npmjs.com/package/bluestream) and [ramda](http://ramdajs.com/) but for a much more simple construct, async iterators. The goal is to make it dead easy to replace your stream based processes with async iterators, which in general should make your code smaller, faster and have less bugs. diff --git a/example.js b/example.js index d0d56d25..03ca4c13 100644 --- a/example.js +++ b/example.js @@ -1,4 +1,4 @@ -const { parallelMap, map, collect } = require('iterator-streams') +const { parallelMap, map, collect } = require('streaming-iterables') const got = require('got') const pokeGenerator = async function* () { diff --git a/package-lock.json b/package-lock.json index 77b7baf5..270461a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "blue-gen", + "name": "streaming-iterables", "version": "0.0.2", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index 36ff63a8..acb43e4d 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { - "name": "iterator-streams", + "name": "streaming-iterables", "version": "0.0.2", "description": "A collection of utilities that work with sync and async iterables and iterators. Designed to replace your streams.", "main": "dist", "types": "dist/index.d.ts", - "repository": "git@github.com:reconbot/iterator-streams.git", - "homepage": "https://github.com/reconbot/iterator-streams", + "repository": "git@github.com:reconbot/streaming-iterables.git", + "homepage": "https://github.com/reconbot/streaming-iterables", "runkitExampleFilename": "example.js", "scripts": { "test": "npm run unit-test && npm run lint",