Skip to content

Update to v0.14.0-rc3 #31

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 5 commits into from
Dec 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is necessary, but not an issue either.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it might help if all of our files were the same as it means we can more easily update them via scripts later.

},
"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