mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
41 lines
980 B
Plaintext
41 lines
980 B
Plaintext
use std log warning
|
|
|
|
print '-------------------------------------------------------------------'
|
|
print 'Building nushell (nu) with dataframes and all the plugins'
|
|
print '-------------------------------------------------------------------'
|
|
|
|
warning "./scripts/build-all.nu will be deprecated, please use the `toolkit build` command instead"
|
|
|
|
let repo_root = ($env.CURRENT_FILE | path dirname --num-levels 2)
|
|
|
|
def build-nushell [] {
|
|
print $'(char nl)Building nushell'
|
|
print '----------------------------'
|
|
|
|
cd $repo_root
|
|
cargo build --features=dataframe,extra --locked
|
|
}
|
|
|
|
def build-plugin [] {
|
|
let plugin = $in
|
|
|
|
print $'(char nl)Building ($plugin)'
|
|
print '----------------------------'
|
|
|
|
cd $'($repo_root)/crates/($plugin)'
|
|
cargo build
|
|
}
|
|
|
|
let plugins = [
|
|
nu_plugin_inc,
|
|
nu_plugin_gstat,
|
|
nu_plugin_query,
|
|
nu_plugin_example,
|
|
nu_plugin_custom_values,
|
|
nu_plugin_formats,
|
|
]
|
|
|
|
for plugin in $plugins {
|
|
$plugin | build-plugin
|
|
}
|