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

nu: Add new release ordering; Tweak nu_deps (#368)

This commit is contained in:
Jakub Žádník 2023-01-31 23:21:03 +02:00 committed by GitHub
parent 01fbd8f691
commit e6f3fe8e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View file

@ -20,7 +20,7 @@ def get-target-dependencies [] {
}
# Gather dependencies for each Nushell crate
export def nu-deps [] {
def nu-deps [] {
let second_wave = [ 'nu-command' ]
let third_wave = [ 'nu-cli' ]
@ -45,7 +45,7 @@ export def nu-deps [] {
}
}
def main [] {
export def main [] {
let deps = nu-deps
mut list = []
@ -65,5 +65,5 @@ def main [] {
}
}
$list | table -e
$list
}

View file

@ -2,20 +2,20 @@ cd crates
let subcrates_wave_1 = [
# components
nu-utils,
nu-glob,
nu-term-grid,
nu-json,
nu-path,
nu-pretty-hex,
nu-system,
nu-path,
nu-json,
nu-utils,
nu-term-grid,
nu-test-support,
nu-protocol,
nu-engine,
nu-color-config,
nu-table,
nu-plugin,
nu-color-config,
nu-parser,
nu-table,
nu-explore,
]