-
Notifications
You must be signed in to change notification settings - Fork 18
Update to purescript 0.11 #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
src/Node/Buffer.purs
Outdated
@@ -23,7 +23,8 @@ module Node.Buffer | |||
) where | |||
|
|||
import Prelude | |||
import Control.Monad.Eff (Eff) | |||
import Prim (kind Type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need to import this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, thanks! removed it
Hmm, the build seems to fails on unrecognised arguments: |
package.json
Outdated
@@ -5,9 +5,9 @@ | |||
"build": "pulp build --censor-lib --strict" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to separate arguments with --
now:
pulp build -- --censor-lib --strict
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum.., tried this before but it didn't work, pushed anyway but build is still failing.
I'm having problems building this locally, seems to be related to pulp
(FWIW, I don't like this build tool, using my own Makefiles for my projects).
|
Thanks, but closing in favor of #19 |
Hi, FWIW I made some trivial changes to get this to build again with 0.11
*
toType
and!
toEffect
.