From 3a3c24b4c0a06fe9a9d2f60a0e468b9bc466e7c9 Mon Sep 17 00:00:00 2001 From: basicdays Date: Sun, 5 Feb 2017 17:42:10 -0600 Subject: [PATCH 01/22] Update histroy.md with prior releases --- History.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index 84e09d0..f98785c 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,15 @@ # History -## 0.1.0 +## v0.2.1 + +- Info: Added npm/travis badges to README.md + +## v0.2.0 + +- Breaking Change: Renamed package from `stream-async-to-iterator` to `stream-to-async-iterator` +- Info: deprecated incorrectly named `stream-async-to-iterator` npm package, message indicates to install new package + name + +## v0.1.0 (Deprecated) - Info: Initial Release From e6f8d6fa458559cca198f8316de044bf0f466952 Mon Sep 17 00:00:00 2001 From: basicdays Date: Sun, 5 Feb 2017 17:48:43 -0600 Subject: [PATCH 02/22] Update build to include History.md and flow files --- .gitignore | 1 + Makefile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b6853b1..9cd48a3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /.nyc_output/ /build/ /coverage/ +/scratch/ # node node_modules/ diff --git a/Makefile b/Makefile index 0643eef..ff1f445 100644 --- a/Makefile +++ b/Makefile @@ -17,11 +17,11 @@ test_command := mocha test --require=test/index --recursive # Files lib_files := $(shell find lib -type f -name *.js) -lib_asset_files := $(shell find lib -type f ! -name "*.js" ! -name "*.js.flow" ! -name ".eslintrc.*" ! -name "*.orig") +lib_asset_files := $(shell find lib -type f ! -name "*.js" ! -name ".eslintrc.*" ! -name "*.orig") build_files := $(lib_files:lib/%=build/%) build_asset_files := $(lib_asset_files:lib/%=build/%) -build_package_files := build/README.md build/package.json build/license build/.npmignore +build_package_files := build/README.md build/package.json build/license build/.npmignore build/History.md # Build From 43646bd42461255e4ca0cf73a0ba335f5213e12a Mon Sep 17 00:00:00 2001 From: basicdays Date: Sun, 5 Feb 2017 17:50:29 -0600 Subject: [PATCH 03/22] Update flow version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42f76a3..77e6748 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "babel-register": "^6.18.0", "chai": "^3.5.0", "eslint": "^3.12.1", - "flow-bin": "^0.37.0", + "flow-bin": "^0.38.0", "mocha": "^3.2.0", "nyc": "^10.0.0", "source-map-support": "^0.4.6" From 182d0efb8d0a6845fe328bc488f8976472299766 Mon Sep 17 00:00:00 2001 From: basicdays Date: Sun, 5 Feb 2017 18:41:03 -0600 Subject: [PATCH 04/22] Fix some module naming, fix some flow type errors --- .eslintignore | 1 + .idea/inspectionProfiles/Project_Default.xml | 1 + lib/stream-to-async-iterator.js | 34 ++++++++++++-------- lib/stream-to-async-iterator.js.flow | 10 +++--- lib/test/stream-to-async-iterator-tests.js | 23 +++++++------ 5 files changed, 41 insertions(+), 28 deletions(-) diff --git a/.eslintignore b/.eslintignore index 13a1f26..5f03e38 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,3 +1,4 @@ .idea/ build/ flow-typed/ +*.js.flow diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml index e7670ef..04225c5 100644 --- a/.idea/inspectionProfiles/Project_Default.xml +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -1,6 +1,7 @@