Phil Freeman
Phil Freeman
There is no way to run the compiler without generating output files right now, at least not using the standard executables. An option could be added easily though and I'd...
That's been requested before. I can prioritize it now that proper editor support is becoming a thing. Is there a best format I can use?
Looks like you need to add ``` derive newtype instance monadThrowApp :: MonadThrow String (App eff) ``` since we refined `MonadError`.
Hi Chris! So far, the experience has been good. I have been trying it out with some low priority ideas I've had, and it's generally been satisfying to use. The...
You could provide a shim for `console.clear` in the `TryPureScript` module, but it might not do what you think, since the console is cleared on each execution in Try PureScript...
Sounds like a good idea.
👍 I think the simplest thing we can do here is to just extract the code which calls the service and runs the generated JS in an `iframe`, into its...
No rush at all, thanks!
The big problem here is security. We don't want unverified foreign code being eval'd on user's machines without their say so.
What we could do is to have `compile.purescript.org` serve the entire HTML page into the `iframe`. Then the same origin policy would solve things for us. We could even load...