Skip to content

Commit 55b652b

Browse files
committed
fix: polyrepo sparse data, release infra, sidebar UI polish
- Fix --multi outputting module count instead of full module data - Add cross-repo totals (total_files, total_lines, total_modules) - Fix GoReleaser ldflags (cli.version -> cli.Version) - Fix CI/release Go version mismatch (1.23 -> 1.25) - Fix strings.Title deprecation, silent errcheck on multi write - HTML sidebar: 2x2 meta grid, activity badges, collapsible sections - Exports show function name bold with params dimmed, truncate on overflow - Types show in accent-bordered cards with field breakdown - Files section open by default - Dep tags wrap horizontally, show short names - HiDPI canvas rendering for crisp text on retina displays - Larger click hit radius, drag threshold, pointer cursor on nodes - Node richness tiers: dim/basic/moderate/hub based on data density
1 parent acc068a commit 55b652b

10 files changed

Lines changed: 478 additions & 117 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.23'
15+
go-version: '1.25'
1616
- run: go test ./... -v -count=1
1717
- run: go build -o stacklit ./cmd/stacklit
1818
- run: ./stacklit init

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818
- uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.23'
20+
go-version: '1.25'
2121
- uses: goreleaser/goreleaser-action@v6
2222
with:
2323
version: latest

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ builds:
1111
env:
1212
- CGO_ENABLED=0
1313
ldflags:
14-
- -s -w -X github.com/glincker/stacklit/internal/cli.version={{.Version}}
14+
- -s -w -X github.com/glincker/stacklit/internal/cli.Version={{.Version}}
1515
goos:
1616
- linux
1717
- darwin

0 commit comments

Comments
 (0)