1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-22 19:00:47 +02:00
nushell/crates/nu-command
Wind d4675d9138
allow export alias in repl ()
# Description
Fixes: 
The issue is happened while `parse_export_in_block`, it makes a call to
`parse_internal_call`, which may be an error.
But in reality, these errors are not useful, all useful errors will be
generated by `parse_xxx` at the end of the function.

# User-Facing Changes
The following code should no longer raise error:
```
export alias a = overlay use
```

# Tests + Formatting
Added 1 test.

# After Submitting
NaN
2025-02-10 15:32:05 +08:00
..
src Fix char lsep assignment () 2025-02-09 07:19:11 -05:00
tests allow export alias in repl () 2025-02-10 15:32:05 +08:00
Cargo.toml Bump to 0.102.1 dev version () 2025-02-05 00:19:48 -05:00
LICENSE Fix rest of license year ranges () 2023-04-04 09:03:29 +12:00
README.md Add top-level crate documentation/READMEs () 2024-07-14 10:10:41 +02:00

This crate contains the majority of our commands

We allow ourselves to move some of the commands in nu-command to nu-cmd-* crates as needed.

Internal Nushell crate

This crate implements components of Nushell and is not designed to support plugin authors or other users directly.