-
Notifications
You must be signed in to change notification settings - Fork 44
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
bower install in the example asks a bunch of questions i don't know the answer to #14
Comments
Which compiler are you on? psc-0.10 or still 0.9? |
No idea, I'm a Haskell+servant hacker getting my feet wet with purescript
through this project. What should I use?
…On Tue, Dec 20, 2016, 2:58 AM Robert Klotzner ***@***.***> wrote:
Which compiler are you on? psc-0.10 or still 0.9?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#14 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAELgmJJK_fSb_iSJZuPpPsJmJ4eVzCNks5rJ4rAgaJpZM4LQxCF>
.
|
Please try with current master and purescript-0.9.x. purescript-0.10.x is not yet supported. |
I'm having similar problems. I rolled back to ps version 0.9.2 and tried again. bower install still asked me to manually resolve a lot of version conflicts:
and then pulp psci give me the following:
Any pointers? |
Please try again with new master and delete any packages that don't compile (I don't know why they are being installed): rm -Rf bower_components/purescript-functors
rm -Rf bower_components/purescript-newtype |
Great - that seems to be working! One other problem though: I've ended up with this line import GHC.Types (Double) In the generated code. What should I use on the Haskell side instead of Double? Thanks for the help :-) |
So scanning through the code it looks like I'd need to add something for Is that about right? Anything else I'd need to do? |
That sounds right - jep. purescript-bridge is extensible, you can either define your own bridge based on defaultBridge or (for such a general purpose type better) you can add it to defaultBridge and send me a PR. |
for Double: eskimor/purescript-bridge#18 |
might it be possible to encode a working version in bower.json or something?
The text was updated successfully, but these errors were encountered: