53 lines
1.8 KiB
PowerShell
53 lines
1.8 KiB
PowerShell
#!/usr/bin/env pwsh
|
|
# Create a new feature (moved to powershell/)
|
|
[CmdletBinding()]
|
|
param(
|
|
[switch]$Json,
|
|
[Parameter(ValueFromRemainingArguments = $true)]
|
|
[string[]]$FeatureDescription
|
|
)
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
if (-not $FeatureDescription -or $FeatureDescription.Count -eq 0) {
|
|
Write-Error "Usage: ./create-new-feature.ps1 [-Json] <feature description>"; exit 1
|
|
}
|
|
$featureDesc = ($FeatureDescription -join ' ').Trim()
|
|
|
|
$repoRoot = git rev-parse --show-toplevel
|
|
$specsDir = Join-Path $repoRoot 'specs'
|
|
New-Item -ItemType Directory -Path $specsDir -Force | Out-Null
|
|
|
|
$highest = 0
|
|
if (Test-Path $specsDir) {
|
|
Get-ChildItem -Path $specsDir -Directory | ForEach-Object {
|
|
if ($_.Name -match '^(\d{3})') {
|
|
$num = [int]$matches[1]
|
|
if ($num -gt $highest) { $highest = $num }
|
|
}
|
|
}
|
|
}
|
|
$next = $highest + 1
|
|
$featureNum = ('{0:000}' -f $next)
|
|
|
|
$branchName = $featureDesc.ToLower() -replace '[^a-z0-9]', '-' -replace '-{2,}', '-' -replace '^-', '' -replace '-$', ''
|
|
$words = ($branchName -split '-') | Where-Object { $_ } | Select-Object -First 3
|
|
$branchName = "$featureNum-$([string]::Join('-', $words))"
|
|
|
|
git checkout -b $branchName | Out-Null
|
|
|
|
$featureDir = Join-Path $specsDir $branchName
|
|
New-Item -ItemType Directory -Path $featureDir -Force | Out-Null
|
|
|
|
$template = Join-Path $repoRoot 'templates/spec-template.md'
|
|
$specFile = Join-Path $featureDir 'spec.md'
|
|
if (Test-Path $template) { Copy-Item $template $specFile -Force } else { New-Item -ItemType File -Path $specFile | Out-Null }
|
|
|
|
if ($Json) {
|
|
$obj = [PSCustomObject]@{ BRANCH_NAME = $branchName; SPEC_FILE = $specFile; FEATURE_NUM = $featureNum }
|
|
$obj | ConvertTo-Json -Compress
|
|
} else {
|
|
Write-Output "BRANCH_NAME: $branchName"
|
|
Write-Output "SPEC_FILE: $specFile"
|
|
Write-Output "FEATURE_NUM: $featureNum"
|
|
}
|