Replies: 2 comments
-
You are addressing three different issues here:
Those lines come from https://github.com/lefou/millw and can not be fixed in this repo.
This could be fixed by simple removing this output. But it was added in the past, to avoid other confusion, so we should probably only hide this message when Mill is returning successfully, but keep it in case we run into errors, so the user has a first hint about the cause (e.g. wrong directory).
This one is harder to solve. I currently cannot find the right issue, but I think it was discussed before. I agree, we should only create the |
Beta Was this translation helpful? Give feedback.
-
Ahhh sorry! I always forget that I have millw as my global and the mainline mill script in the local repo 😅 .
Yea this seems totally reasonable. |
Beta Was this translation helpful? Give feedback.
-
I recently tried out the new
mill init
command when making https://github.com/ckipp01/mill-plugin.g8, but there were a couple things I noticed that I think may surprise users and are undesirable.When you attempt to create a repo you'll almost always see:
.mill-version
or that they should create a build file because none is found is quite confusing because they don't want those things where they're at, they just want to create their new repo.out
that is left where the user doesn't want it.sbt
use to have this issue withsbt new
as well with leaving behind atarget
, but that's no longer the case and it's much nicer and cleaner to not have to cleanup a stray directory.Are either of these addressable?
Beta Was this translation helpful? Give feedback.
All reactions