nushell/crates
WindSoilder e72a4116ec
adjust some commansd input_output type (#11436)
# Description
1. Make table to be a subtype of `list<any>`, so some input_output_types
of filter commands are unnecessary
2. Change some commands which accept an input type, but generates
different output types. In this case, delete duplicate entry, and change
relative output type to `<any>`

Yeah it makes some commands more permissive, but I think it's better to
run into strange issue that why my script runs to failed during parse
time.

Fixes  #11193

# User-Facing Changes
NaN

# Tests + Formatting
NaN

# After Submitting
NaN
2024-01-15 16:58:26 +08:00
..
nu_plugin_custom_values Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu_plugin_example Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu_plugin_formats Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu_plugin_gstat Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu_plugin_inc Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu_plugin_python remove vectorize_over_list from python plugin (#9905) 2023-08-03 16:46:48 +02:00
nu_plugin_query update query web param --as-table from Table to List (#11531) 2024-01-12 13:26:40 -06:00
nu-cli adjust some commansd input_output type (#11436) 2024-01-15 16:58:26 +08:00
nu-cmd-base Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-cmd-dataframe Fix incorrect handling of boolean flags for builtin commands (#11492) 2024-01-11 17:19:48 +02:00
nu-cmd-extra adjust some commansd input_output type (#11436) 2024-01-15 16:58:26 +08:00
nu-cmd-lang adjust some commansd input_output type (#11436) 2024-01-15 16:58:26 +08:00
nu-color-config Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-command adjust some commansd input_output type (#11436) 2024-01-15 16:58:26 +08:00
nu-engine add type check during eval time (#11475) 2024-01-12 23:48:53 +08:00
nu-explore Fix incorrect handling of boolean flags for builtin commands (#11492) 2024-01-11 17:19:48 +02:00
nu-glob Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-json Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-lsp Fix "Char index out of bounds" Error (#11526) 2024-01-11 15:24:49 -06:00
nu-parser Fix incorrect handling of boolean flags for builtin commands (#11492) 2024-01-11 17:19:48 +02:00
nu-path Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-plugin Fix incorrect handling of boolean flags for builtin commands (#11492) 2024-01-11 17:19:48 +02:00
nu-pretty-hex Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-protocol adjust some commansd input_output type (#11436) 2024-01-15 16:58:26 +08:00
nu-std add type check during eval time (#11475) 2024-01-12 23:48:53 +08:00
nu-system Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-table Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-term-grid Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-test-support Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
nu-utils Bump to dev version 0.89.1 (#11513) 2024-01-11 00:19:21 +13:00
README.md Remove old nushell/merge engine-q 2022-02-07 14:54:06 -05:00

Nushell core libraries and plugins

These sub-crates form both the foundation for Nu and a set of plugins which extend Nu with additional functionality.

Foundational libraries are split into two kinds of crates:

  • Core crates - those crates that work together to build the Nushell language engine
  • Support crates - a set of crates that support the engine with additional features like JSON support, ANSI support, and more.

Plugins are likewise also split into two types:

  • Core plugins - plugins that provide part of the default experience of Nu, including access to the system properties, processes, and web-connectivity features.
  • Extra plugins - these plugins run a wide range of different capabilities like working with different file types, charting, viewing binary data, and more.