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: diff --git a/bower.json b/bower.json index 07aa471..70421bb 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-node-buffer": ">=5.0.0 <7.0.0", - "purescript-prelude": "^4.0.0", - "purescript-either": "^4.0.0", - "purescript-exceptions": "^4.0.0" + "purescript-effect": "master", + "purescript-node-buffer": "master", + "purescript-prelude": "master", + "purescript-either": "master", + "purescript-exceptions": "master" } } 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", 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