New-DevBootstrap.ps1
|
function New-DevBootstrap { [CmdletBinding()] param( [Parameter()] [string]$Path = (Get-Location).Path ) New-DevEnvironment -Path $Path New-DevConfig -Path $Path Write-Host "✔ Bootstrap complete" -ForegroundColor Green } |