From 74492f04f8af1ac86d00f435aabcfaf48eaa55d0 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 10 Dec 2020 06:39:28 -0800 Subject: [PATCH 1/5] Update Bower dependencies to master --- bower.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bower.json b/bower.json index 07aa471..c028165 100644 --- a/bower.json +++ b/bower.json @@ -12,15 +12,15 @@ "url": "git://github.com/purescript-node/purescript-node-streams.git" }, "devDependencies": { - "purescript-console": "^4.1.0", - "purescript-assert": "^4.0.0", - "purescript-partial": "^2.0.0" + "purescript-console": "master", + "purescript-assert": "master", + "purescript-partial": "master" }, "dependencies": { - "purescript-effect": "^2.0.0", + "purescript-effect": "master", "purescript-node-buffer": ">=5.0.0 <7.0.0", - "purescript-prelude": "^4.0.0", - "purescript-either": "^4.0.0", - "purescript-exceptions": "^4.0.0" + "purescript-prelude": "master", + "purescript-either": "master", + "purescript-exceptions": "master" } } From 97a32a21b6f14b0d4df32f28da8bacac91c1f2b9 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 10 Dec 2020 06:40:48 -0800 Subject: [PATCH 2/5] Update node-buffer to master --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index c028165..70421bb 100644 --- a/bower.json +++ b/bower.json @@ -18,7 +18,7 @@ }, "dependencies": { "purescript-effect": "master", - "purescript-node-buffer": ">=5.0.0 <7.0.0", + "purescript-node-buffer": "master", "purescript-prelude": "master", "purescript-either": "master", "purescript-exceptions": "master" From a1d6bf3ceeac7502c65905b7833255b94156e5a7 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 10 Dec 2020 06:40:59 -0800 Subject: [PATCH 3/5] Replace # Type with Row Type --- src/Node/Stream.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Node/Stream.purs b/src/Node/Stream.purs index 49d4f87..6bfb776 100644 --- a/src/Node/Stream.purs +++ b/src/Node/Stream.purs @@ -50,7 +50,7 @@ import Node.Encoding (Encoding) -- | -- | - Whether reading and/or writing from/to the stream are allowed. -- | - Effects associated with reading/writing from/to this stream. -foreign import data Stream :: # Type -> Type +foreign import data Stream :: Row Type -> Type -- | A phantom type associated with _readable streams_. data Read From 1679c219282ff40a1b321bd0fd62106e0efd1cf3 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 10 Dec 2020 06:41:05 -0800 Subject: [PATCH 4/5] Run test command with psa flags --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f2e5fe..191c3f0 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "scripts": { "clean": "rimraf output && rimraf .pulp-cache", "build": "eslint src && pulp build -- --censor-lib --strict", - "test": "pulp test" + "test": "pulp test -- --censor-lib --strict" }, "devDependencies": { "eslint": "^7.15.0", From 5fe0e4217dfa38486d204605372611ffc7a9d652 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Thu, 10 Dec 2020 06:47:34 -0800 Subject: [PATCH 5/5] Update CI to use v0.14.0-rc3 PS release --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 063845e..2e4c7a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: - uses: actions/checkout@v2 - uses: purescript-contrib/setup-purescript@main + with: + purescript: "0.14.0-rc3" - uses: actions/setup-node@v1 with: