forked from extern/nushell
# Description i've almost always wanted to clean up the root of the repo, so here is my take at it, with some important advice given by @fdncred 😌 - `README.release.txt` is now gone and directly inline in the `release-pkg` script used in the `release` *workflow* - `build.rs` has been moved to `scripts/` and its path has been changed in [`Cargo.toml`](https://github.com/amtoine/nushell/blob/refactor/clean-root/Cargo.toml#L3) according to the [*Build Scripts* section](https://doc.rust-lang.org/cargo/reference/build-scripts.html#build-scripts) of *The Cargo Book* - i've merged `images/` into `assets/` and fix the only mention to the GIF in the README - i've moved the `docs/README.md` inside the main `README.md` as a new [*Configuration* section](https://github.com/amtoine/nushell/tree/refactor/clean-root#configuration) - the very deprecated `pkg_mgrs/` has been removed - all the `.nu`, `.sh`, `.ps1` and `.cmd` scripts have been moved to `scripts/` ### things i've left as-is - all the other `.md` documents - the configuration files - all the Rust and core stuff - `docker/` - `toolkit.nu` - the `wix/` diretory which appears to be important for `winget` # User-Facing Changes scripts that used to rely on the paths to some of the scripts should now call the scripts inside `scripts/` => i think this for the greater good, it was not pretty nor scalable to have a bunch of scripts in the root of our main `nushell` 😱 *i even think we might want to move these scripts outside the main `nushell` repo* maybe to `nu_scripts` or some other tool 👍 # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - ⚫ `toolkit test` - ⚫ `toolkit test stdlib` # After Submitting ``` $nothing ```
52 lines
2.0 KiB
Plaintext
52 lines
2.0 KiB
Plaintext
# are we on windows or not?
|
|
def windows? [] {
|
|
$nu.os-info.name == windows
|
|
}
|
|
|
|
# filter out files that end in .d
|
|
def keep-plugin-executables [] {
|
|
if (windows?) { where name ends-with '.exe' } else { where name !~ '\.d' }
|
|
}
|
|
|
|
# get list of all plugin files from their installed directory
|
|
let plugins = (ls ((which nu).path.0 | path dirname) | where name =~ nu_plugin | keep-plugin-executables)
|
|
for plugin in $plugins {
|
|
print -n $"registering ($plugin.name), "
|
|
nu -c $"register '($plugin.name)'"
|
|
print "success!"
|
|
}
|
|
|
|
# print helpful message
|
|
print "\nplugins registered, please restart nushell"
|
|
|
|
# Plugin Location
|
|
# https://github.com/nushell/nushell/tree/main/crates/nu_plugin_custom_values
|
|
# https://github.com/nushell/nushell/tree/main/crates/nu_plugin_example
|
|
# https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gstat
|
|
# https://github.com/nushell/nushell/tree/main/crates/nu_plugin_inc
|
|
# https://github.com/nushell/nushell/tree/main/crates/nu_plugin_python
|
|
# https://github.com/nushell/nushell/tree/main/crates/nu_plugin_query
|
|
# https://github.com/fdncred/nu_plugin_from_parquet
|
|
# https://github.com/fdncred/nu_plugin_from_regex
|
|
# https://github.com/fdncred/nu_plugin_pnet
|
|
# https://github.com/JosephTLyons/nu_plugin_periodic_table
|
|
# https://github.com/Euphrasiologist/nu_plugin_bio
|
|
# https://github.com/realcundo/nu_plugin_dcm
|
|
# https://github.com/enerdgumen/nu_plugin_dotenv
|
|
# https://github.com/bluk/nu_plugin_from_bencode
|
|
|
|
# Older plugins
|
|
# https://github.com/notryanb/nu_plugin_id3
|
|
# https://github.com/notryanb/nu_plugin_weather
|
|
# https://github.com/tiffany352/nu-plugins/tree/main/from_nbt
|
|
# https://github.com/tiffany352/nu-plugins/tree/main/file_exists
|
|
# https://github.com/potan/nu_plugin_wifiscan
|
|
# https://github.com/autophagy/nu_plugin_from_dhall
|
|
# https://github.com/yanganto/nu_plugin_s3
|
|
# https://github.com/lukasreuter/nu_plugin_unity
|
|
# https://github.com/filaretov/nu_plugin_path_temp
|
|
# https://github.com/cdecompilador/nu_plugin_bg
|
|
# https://github.com/aJuvan/nu_plugin_kubectl
|
|
# https://github.com/hedonihilist/nu_plugin_df
|
|
|