2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-15 21:48:29 +00:00
nushell/crates
Antoine Stevan 39156930f5
fix std log ()
related to
- https://github.com/nushell/nushell/pull/12196

# Description
while i'm 100% okey with the original intent behind
https://github.com/nushell/nushell/pull/12196, i think the PR did
introduce two unintended things:
- extra parentheses that make the `log.nu` module look like Lisp lol
- a renaming of the `NU_LOG_LEVEL` environment variable to
`NU_log-level`. this breaks previous usage of `std log` and, as it's not
mentionned at all in the PR, i thought it was not intentional 😋

# User-Facing Changes
users can now control `std log` with `$env.NU_LOG_LEVEL`

# Tests + Formatting
the "log" tests have been fixed as well.

# After Submitting
2024-04-10 17:30:58 -04:00
..
nu-cli Rename IoStream to OutDest () 2024-04-09 16:48:32 +00:00
nu-cmd-base Range refactor () 2024-04-06 09:04:56 -05:00
nu-cmd-dataframe Move dataframes support to a plugin () 2024-04-09 19:31:43 -05:00
nu-cmd-extra Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-cmd-lang Rename IoStream to OutDest () 2024-04-09 16:48:32 +00:00
nu-color-config Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-command Force timeit to not capture stdout () 2024-04-10 13:31:29 +00:00
nu-engine Rename IoStream to OutDest () 2024-04-09 16:48:32 +00:00
nu-explore Rename IoStream to OutDest () 2024-04-09 16:48:32 +00:00
nu-glob Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-json Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-lsp Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-parser Lex whitespace in input-output types. () 2024-04-10 16:28:54 +02:00
nu-path Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-plugin Rename IoStream to OutDest () 2024-04-09 16:48:32 +00:00
nu-plugin-test-support Bump similar from 2.4.0 to 2.5.0 () 2024-04-07 21:50:11 +00:00
nu-pretty-hex Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-protocol Rename IoStream to OutDest () 2024-04-09 16:48:32 +00:00
nu-std fix std log () 2024-04-10 17:30:58 -04:00
nu-system Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-table Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-term-grid Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu-test-support Isolate tests from user config () 2024-04-10 06:27:46 +08:00
nu-utils Make auto-cd check for permissions () 2024-04-06 08:56:46 -05:00
nu_plugin_custom_values Fix deadlock on PluginCustomValue drop () 2024-04-05 21:57:00 -05:00
nu_plugin_example Add GetSpanContents engine call () 2024-04-09 10:02:17 -04:00
nu_plugin_formats Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu_plugin_gstat Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu_plugin_inc Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu_plugin_polars Showing full help when running the polars command () 2024-04-10 07:26:33 -05:00
nu_plugin_python Bump version to 0.92.2 () 2024-04-05 10:24:00 -04:00
nu_plugin_query Bump version to 0.92.2 () 2024-04-05 10:24:00 -04: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.