scripts
scripts/env.nu
const ROOT = (path self | path dirname | path dirname)
# Reload environment if changes were made in one script
def "reload" [] { exec nu -e $"source ($ROOT | path join "scripts" "env.nu")" }
# Build environment related commands
def "build" [] { help build }
export use build *
# Third party related commands
def "thirdparty" [] { help thirdparty }
export use thirdparty *