Skip to content

Commit

Permalink
nu: Add new release ordering; Tweak nu_deps (nushell#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
kubouch committed Jan 31, 2023
1 parent 01fbd8f commit e6f3fe8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions make_release/nu_deps.nu
Original file line number Diff line number Diff line change
Expand Up @@ -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' ]

Expand All @@ -45,7 +45,7 @@ export def nu-deps [] {
}
}

def main [] {
export def main [] {
let deps = nu-deps

mut list = []
Expand All @@ -65,5 +65,5 @@ def main [] {
}
}

$list | table -e
$list
}
12 changes: 6 additions & 6 deletions make_release/nu_release.nu
Original file line number Diff line number Diff line change
Expand Up @@ -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,
]

Expand Down

0 comments on commit e6f3fe8

Please sign in to comment.