blob: fb8d6a7c8f01b48c5727de73db63a556c2c3d974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#
# ~~~ nushell node version manager
#
#
# ~~~ imports
use "src/bootstrap.nu" *
use "src/versions.nu" *
#
# ~~~ main command
# The Node Version Manager
export def "nunvm" []: nothing -> nothing {
help nunvm
}
#
# ~~~ list node versions
# List versions of NodeJS
export def "nunvm list" [
--local # List locally-installed versions of NodeJS
]: nothing -> list<string> {
bootstrap
if ($local) {
versions list --local | sort -r
} else {
versions list | sort -r
}
}
|