12 lines
251 B
PowerShell
12 lines
251 B
PowerShell
[cmdletbinding()]
|
|
param(
|
|
[string]$output = "wwwroot"
|
|
)
|
|
|
|
|
|
$PSNativeCommandUseErrorActionPreference = $true
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
Write-Output "Output directory: $output"
|
|
pnpm tailwindcss -i wwwroot/tailwind.css -o $output/tailwind.g.css
|