forked from extern/nushell
* 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>
19 lines
380 B
Rust
19 lines
380 B
Rust
mod config;
|
|
mod env_command;
|
|
mod export_env;
|
|
mod let_env;
|
|
mod load_env;
|
|
mod source_env;
|
|
mod with_env;
|
|
|
|
pub use config::ConfigEnv;
|
|
pub use config::ConfigMeta;
|
|
pub use config::ConfigNu;
|
|
pub use config::ConfigReset;
|
|
pub use env_command::Env;
|
|
pub use export_env::ExportEnv;
|
|
pub use let_env::LetEnv;
|
|
pub use load_env::LoadEnv;
|
|
pub use source_env::SourceEnv;
|
|
pub use with_env::WithEnv;
|