mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 13:06:08 +02:00
Move std-rfc
into Nushell (#15042)
Move `std-rfc` into Nushell. `use std-rfc/<submodule>` now works "out-of-the-box"
This commit is contained in:
9
crates/nu-std/std-rfc/mod.nu
Normal file
9
crates/nu-std/std-rfc/mod.nu
Normal file
@ -0,0 +1,9 @@
|
||||
export use conversions *
|
||||
export use tables *
|
||||
export use path *
|
||||
export module clip
|
||||
export module str
|
||||
|
||||
# kv module depends on sqlite feature, which may not be available in some builds
|
||||
const kv_module = if ("sqlite" in (version).features) { "std-rfc/kv" } else { null }
|
||||
export use $kv_module *
|
Reference in New Issue
Block a user