We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4925100 commit 0651d03Copy full SHA for 0651d03
2 files changed
profile/installer/installApp.ps1
@@ -48,7 +48,12 @@ $installListMap = @{
48
# @{
49
# name = 'nvm'
50
# cliName = 'nvm'
51
- # },
+ # }
52
+ @{
53
+ name = 'fnm'
54
+ cliName = 'fnm'
55
+ description = 'nvm的rust替代,跨平台node版本管理'
56
+ },
57
@{
58
name = 'git'
59
},
profile/profile.ps1
@@ -51,7 +51,9 @@ $tools = @{
# 设置sccache用于rust编译缓存,提高新启动项目的编译速度
$Env:RUSTC_WRAPPER = 'sccache'
}
- zoxide = { Invoke-Expression (& { (zoxide init powershell | Out-String) }) }
+ zoxide = { Invoke-Expression (& { (zoxide init powershell | Out-String) })
+ }
+ fnm = { fnm env --use-on-cd | Out-String | Invoke-Expression }
foreach ($tool in $tools.GetEnumerator()) {
0 commit comments