mirror of
https://github.com/nushell/nushell
synced 2024-12-26 04:53:09 +00:00
2cffff0c1b
* Allow private imports inside modules Can call `use ...` inside modules now. * Add more tests * Add a leak test * Refactor exportables; Prepare for 'export use' * Fix description * Implement 'export use' command This allows re-exporting module's commands and aliases from another module. * Add more tests; Fix import pattern list strings The import pattern strings didn't trim the surrounding quotes. * Add ignored test
12 lines
167 B
Rust
12 lines
167 B
Rust
extern crate nu_test_support;
|
|
|
|
mod hooks;
|
|
mod modules;
|
|
mod nu_repl;
|
|
mod overlays;
|
|
mod parsing;
|
|
mod path;
|
|
#[cfg(feature = "plugin")]
|
|
mod plugins;
|
|
mod scope;
|
|
mod shell;
|