Dillon Mulroy

Results 65 comments of Dillon Mulroy

I'm interested how you would implement a repository for the Cargo aggregate with the backing datastore being a RDBMS. Wouldn't you need to have a way to tell if child...

> Considering `pub import a.{b}` and `import a.{pub b}` syntaxes. > > It seems that `pub import a.{b}` implies you can import `a` from this module in some fashion. >...

I think the problem with `pub import project/foo.{ type Foo }` is that it bring `foo` into scope. So potentially just swapping `import` with `include` is enough to change the...

This seemed like the right place to bring this up instead of opening up a new issue, but I'd love to have setting for the bottom panel that enables/disables it...

@Arcanemagus The way that setting reads is that it only closes the panel if there are no issues. I want the opposite, I want the panel to stay closed even...

i'm not sure that's a great idea, I think that just complicates things - it's a second name we have to track through the entire flow and make sure is...

I'm open to pushback though, I think it's probably just easiest/best for people to rename the root folder when the wizard/tool is done running

That would be awesome! Could you check in on using: https://ocaml.org/p/melange-fest/latest

I believe the issue is that there is `/` in the project directory. I just tried doing `foo/bar` and it failed for me with the same error, however using `foobar`...

We should improve the regex validation here to prevent `/` in the project name: https://github.com/dmmulroy/create-melange-app/blob/develop/src/core/validation.ml#L18-L29