mirror of
https://github.com/nushell/nushell.git
synced 2025-03-26 07:19:55 +01:00
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:
parent
1dd861b10f
commit
00e5e6d719
14
toolkit.nu
14
toolkit.nu
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user