Jakub Žádník
Jakub Žádník
Thinking about it, I think what we can do is to make `nupm publish` generate one type of line ending (LF or CRLF), but more importantly, we can change the...
Well, it's not an official Nushell registry, it's just a proof of concept for testing nupm. I'd avoid having anything “official” until we have it more fleshed out.
Sounds good. I'm also fine renaming `package.nuon` to `nupm.nuon` (no need for the capital IMO).
I think I misunderstood your point 2, we don't have anything like Rust's `crate` in Nushell. Modules currently don't have an idea of being a part of a package, we'd...
It would be great if you could provide some failing cases in Nushell which would be solved with your changes. Right now, all the rationale makes sense, but it's not...
So you're essentially proposing replacing _all_ canonical paths by absolute paths, right? (Unless asked specifically, like `path expand`.) I think that would clean up a lot of the path handling...
We used to change the process working directory with `cd`, but we removed it because modifying a global state from inner scopes doesn't fit Nushell's design, and it was causing...
Thanks, that's a good example. It's directly applicable to Nushell modules, for example, ```nushell # spam.nu use foo.nu def main [] { foo } ``` However, I think in this...
I see, `rm foo-link/` seems to match the traditional semantic of other shells, which is a good argument, though, I still think it's a footgun. At the very least, though,...
Nushell also refuses to remove a non-empty directory.