This commit is contained in:
Alexander Kostikov 2020-07-28 16:54:44 -07:00
Родитель f30cac9193
Коммит b508daad89
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,10 @@ function Start-DocFx
# Helper function
function Open-DocFx( $folder = $pwd )
{
$path = Get-ChildItem -Recurse docfx.json | select -First 1
Push-Location $folder
$path = Get-ChildItem -Recurse "docfx.json" | select -First 1
Pop-Location
$ps = Start-Process `
-FilePath "pwsh" `
-ArgumentList ('-Command "docfx ' + $path + ' --serve"') `
@ -50,7 +53,10 @@ function Start-DocFx
Start-Job -Name $cleanupJobName {
Start-Sleep -Seconds 60
$ps | Stop-Process
} | Out-Null
Start-Process http://localhost:8080
}
# When need to open new docfx in current folder

Просмотреть файл

@ -37,6 +37,7 @@
'call',
'construct',
'default',
'dfx',
'f', # filter
'first',
'gite',