Skip to content

Commit

Permalink
Update to v0.14.0-rc3 (#31)
Browse files Browse the repository at this point in the history
* Update Bower dependencies to master

* Update node-buffer to master

* Replace # Type with Row Type

* Run test command with psa flags

* Update CI to use v0.14.0-rc3 PS release
  • Loading branch information
JordanMartinez authored Dec 10, 2020
1 parent 8c1f76a commit 3272543
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
16 changes: 8 additions & 8 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Node/Stream.purs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3272543

Please sign in to comment.