Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 320 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 320 Bytes

Setup - Windows Powershell profile

function Run-Tool {
    param($toolName)
    Set-Location -Path "O:\node-tools"

    If (!$toolName) {
        Invoke-Expression "pnpm run"
        return
    }

    Invoke-Expression "pnpm run concurrently 'npm:$toolName' -c green"
}

Usage:

run <toolName>