Update toolkit.nu add nu_plugin_polars plugin for build and install (#15324)

<!--
if this PR closes one or more issues, you can automatically link the PR
with
them by using one of the [*linking
keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword),
e.g.
- this PR should close #xxxx
- fixes #xxxx

you can also mention related issues, PRs or discussions!
-->

# Description
<!--
Thank you for improving Nushell. Please, check our [contributing
guide](../CONTRIBUTING.md) and talk to the core team before making major
changes.

Description of your pull request goes here. **Provide examples and/or
screenshots** if your changes affect the user experience.
-->

Update `toolkit.nu` add `nu_plugin_polars` plugin for build and install

# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->

`toolkit install --all` and `toolkit build --all` will have
`nu_plugin_polars` included
This commit is contained in:
Justin Ma 2025-03-17 02:44:41 +08:00 committed by GitHub
parent 1dd861b10f
commit 00e5e6d719
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -355,6 +355,7 @@ export def build [
nu_plugin_inc,
nu_plugin_gstat,
nu_plugin_query,
nu_plugin_polars,
nu_plugin_example,
nu_plugin_custom_values,
nu_plugin_formats,
@ -393,6 +394,7 @@ export def install [
nu_plugin_inc,
nu_plugin_gstat,
nu_plugin_query,
nu_plugin_polars,
nu_plugin_example,
nu_plugin_custom_values,
nu_plugin_formats,
@ -628,9 +630,9 @@ export def "build wasm" [] {
print $'(char nl)Building ($crate) for wasm'
print '----------------------------'
(
^cargo build
-p $crate
--target wasm32-unknown-unknown
^cargo build
-p $crate
--target wasm32-unknown-unknown
--no-default-features
)
}
@ -646,9 +648,9 @@ export def "clippy wasm" [] {
print $'(char nl)Checking ($crate) for wasm'
print '----------------------------'
(
^cargo clippy
-p $crate
--target wasm32-unknown-unknown
^cargo clippy
-p $crate
--target wasm32-unknown-unknown
--no-default-features
--
-D warnings