mirror of
https://github.com/nushell/nushell.git
synced 2025-05-10 01:42:57 +00:00
* start working on source-env * WIP * Get most tests working, still one to go * Fix file-relative paths; Report parser error * Fix merge conflicts; Restore source as deprecated * Tests: Use source-env; Remove redundant tests * Fmt * Respect hidden env vars * Fix file-relative eval for source-env * Add file-relative eval to "overlay use" * Use FILE_PWD only in source-env and "overlay use" * Ignore new tests for now This will be another issue * Throw an error if setting FILE_PWD manually * Fix source-related test failures * Fix nu-check to respect FILE_PWD * Fix corrupted spans in source-env shell errors * Fix up some references to old source * Remove deprecation message * Re-introduce deleted tests Co-authored-by: kubouch <kubouch@gmail.com>
16 lines
389 B
Rust
16 lines
389 B
Rust
mod deprecated_commands;
|
|
mod hash_base64;
|
|
mod source;
|
|
mod str_datetime;
|
|
mod str_decimal;
|
|
mod str_find_replace;
|
|
mod str_int;
|
|
|
|
pub use deprecated_commands::*;
|
|
pub use hash_base64::HashBase64;
|
|
pub use source::Source;
|
|
pub use str_datetime::StrDatetimeDeprecated;
|
|
pub use str_decimal::StrDecimalDeprecated;
|
|
pub use str_find_replace::StrFindReplaceDeprecated;
|
|
pub use str_int::StrIntDeprecated;
|