1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-02 07:07:46 +00:00

Update nu_release.nu for 0.87 release (#668)

New crate `nu-lsp`

Only treat `nu-cmd-lang` with the `build.rs` for `version` with the
`--no-verify` treatment in the separate wave

Reorder `nu-command` crates as there are dev-dependencies that may be a
problem
This commit is contained in:
Stefan Holderbach 2023-11-14 17:33:24 +01:00 committed by GitHub
parent 8635a78991
commit 1fd3a3fa6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,19 +29,21 @@ let subcrates_wave_1 = [
nu-parser, nu-parser,
nu-table, nu-table,
nu-explore, nu-explore,
nu-cmd-base,
] ]
# This crate has a `build.rs` file and thus needs `--no-verify`
let subcrates_wave_2 = [ let subcrates_wave_2 = [
nu-cmd-base,
nu-cmd-lang, nu-cmd-lang,
nu-cmd-dataframe,
nu-cmd-extra,
nu-command,
] ]
let subcrates_wave_3 = [ let subcrates_wave_3 = [
nu-command,
nu-cmd-dataframe,
nu-cmd-extra,
nu-cli, nu-cli,
nu-std, nu-std,
nu-lsp,
nu_plugin_query, nu_plugin_query,
nu_plugin_inc, nu_plugin_inc,